Cannot wrap my brain around this formula!

jfobes

New Member
Joined
Mar 15, 2011
Messages
8
Here is what I would like to do

If H2 is <85 “Marksman” if H2 is 85 – 89.99 “Sharpshooter” if H2 is 90 – 94.99 “Expert” if H2 is 95 – 96.99 “Master” if H2 is equal to or >97 “High Master”

All the numbers are a percentage based on another calculation to determine classification or grade

Any help would be greatly appreciated….

Thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Try

=LOOKUP(H2,{0,85,90,95,97},{"Marksman","Sharpshooter","Expert","Master","High Master"})
 
Upvote 0
Not working but thanks for the effort. This only populated the text if the number was exact, not a range 85 to 89.99
 
Last edited:
Upvote 0
If your numbers are percentages then

=LOOKUP(H2,{0,0.85,0.90,0.95,0.97},{"Marksman","Sharpshooter","Expert","Master","High Master"})
 
Upvote 0

Forum statistics

Threads
1,224,604
Messages
6,179,857
Members
452,948
Latest member
UsmanAli786

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