If formula to put three values in cell based on value of anther cell

Swissmiss

New Member
Joined
Sep 27, 2013
Messages
23
ScoreRating
80
45

<tbody>
</tbody>

What formula do I use to get the rating to show up as Below, Approaches, Met, Masters based on the following:

If score is 40 or less equals below
If score is between 41 & 62 equals Approaches
If score is between 63 & 78 equals Met
If score is 79 or higher equals Masters

Thanks!
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Two options:

Hard coded formula:

=LOOKUP(A3,{0,41,63,79},{"Below","Approaches","Met","Masters"})

Or Lookup Table:

=LOOKUP(A3,$E$3:$E$6,$F$3:$F$6)
E
F
30Below
441Approaches
563Met
679Masters

<tbody>
</tbody>
 
Upvote 0
You're welcome, and thank you for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,957
Messages
6,122,466
Members
449,086
Latest member
kwindels

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