Calculating Productivity Percentage

rsharma017

New Member
Joined
Aug 7, 2017
Messages
7
I am not sure if this would be a place to seek assistance but I thought I would try.

I am assisting a team to calculate their productivity percentage (score tied to bonus).

Its a little complicated then just regular productivity. The team has 10 days to complete a task. I would like to assign a productivity percentage based on how many days it took them to complete it. For example:

[TABLE="width: 500"]
<tbody>[TR]
[TD]DAYS TOOK TO COMPLETE
[/TD]
[TD]PRODUCTIVITY %
[/TD]
[/TR]
[TR]
[TD]15
[/TD]
[TD]LOWEST % SCORE
[/TD]
[/TR]
[TR]
[TD]14
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]13
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]12
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]11
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]10
[/TD]
[TD] 100% SINCE 10 DAYS IS THE GOAL
[/TD]
[/TR]
[TR]
[TD]9
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]8
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]HIGHEST % SCORE
[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Give this a try:
Code:
=IF(A2=10,1,IF(A2 < 10,(10 -(10 -A2)) / 10,((10 +A2) / (10 +MAX(A:A))) * 2))

If you want a percentage rated from low to high without 100% being on 10 days, you could try this:
Code:
=PERCENTRANK.INC(A:A,A2,2) * 2
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top