If range (i.e value 0-39 display Does not meet)

lastingimprint02

New Member
Joined
Nov 8, 2008
Messages
35
I'm creating a scoresheet and the grand total score at the bottom needs to correspond to a legend.
The legend would be the following:
0-39 = Does Not Meet
40-60 = Progressing Towards Goal
61-120 = Meets Goal
121-140 = Exceeds Goal

If someones grand total score was say 50, I would like it to display adjacent to the score "Progressing Towards Goal".

Can anyone assist? I have very basic excel skills so as much detail as possible in your response would be most helpful. Thanks!
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Place this next to the total score and change the A1 to point at the total score:-
Code:
=CHOOSE(MATCH([COLOR=red][B]A1[/B][/COLOR],{0,40,61,121},1),"Does Not Meet","Progressing Towards Goal","Meets Goal","Exceeds Goal")
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,253
Members
452,900
Latest member
LisaGo

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