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

Swissmiss

New Member
Joined
Sep 27, 2013
Messages
23
[TABLE="width: 500"]
<tbody>[TR]
[TD]Score[/TD]
[TD]Rating[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]80[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]45[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

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

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
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)
[TABLE="class: grid, width: 200"]
<tbody>[TR]
[TD][/TD]
[TD]E
[/TD]
[TD]F[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]0[/TD]
[TD]Below[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]41[/TD]
[TD]Approaches[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]63[/TD]
[TD]Met[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]79[/TD]
[TD]Masters[/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0

Forum statistics

Threads
1,226,113
Messages
6,189,046
Members
453,522
Latest member
Seeker2025

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