Score based on percentage value from range percentage

mrwiley

Board Regular
Joined
Sep 10, 2012
Messages
59
Good day,

I know I can make this simpler but I am sending this out to the world of the company and need to keep it "concise".

I need to have a value "score" selected based on % given however, the options to pick the value "score" needs to be obtained using the range below

A B
On TimeScore
100%40
95-99%35
90-94%30
85-89%25
80-84%20
75-79%15
70-74%10
65-69%5
<64%0

<tbody>
</tbody>

I have tried IF(and( and IF(Or etc... nested if... The issue is the % is given based on completions - if the whole % of 76% then it would equal 15.

Any ideas you could share?

Thanks
 
Last edited:

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
How about
=LOOKUP(A2,{0,0.65,0.7,0.75,0.8,0.85,0.9,0.95,1},{0,5,10,15,20,25,30,35,40})
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,769
Members
448,991
Latest member
Hanakoro

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