Tier rankings

picaman

New Member
Joined
Jun 23, 2002
Messages
6
I have a series of 5 cells, each populated with numbers ranging from 0 to 200. I'd like for a 6th cell to be automatically populated with a phrase based on the following criteria:

3 or more cells with 95 or better = "Tier 1"
2 cells with 95 or better = "Tier 2"
1 cell with 95 or better = "Tier 3"
0 cells with 95 or better = "Tier 4"

Any ideas? Thanks in advance for your time and your input : )

Jamie
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Jamie,

It ain't pretty:
="Tier " & TEXT(4-IF(COUNTIF(B11:B16,">=95")>3, 3, COUNTIF(B11:B16,">=95")),"#")

If you can, I'd hide away the intermediate COUNTIF() calculation in a cell somewhere and refer to it (twice) within this formula.

Regards,
=dn
 
Upvote 0
="Tier "&CHOOSE(COUNTIF(A1:A5,">=95")+1,4,3,2,1,1,1)
OR
="Tier "&VLOOKUP(COUNTIF(A1:A5,">=95"),{0,4;1,3;2,2;3,1},2)
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,090
Latest member
vivek chauhan

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