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:

DAYS TOOK TO COMPLETE
PRODUCTIVITY %
15
LOWEST % SCORE
14
13
12
11
10
100% SINCE 10 DAYS IS THE GOAL
9
8
7
6
5
4
3
2
1
HIGHEST % SCORE

<tbody>
</tbody>
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
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,215,537
Messages
6,125,393
Members
449,222
Latest member
taner zz

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