Need help with Formula

krazybo13

New Member
Joined
Feb 14, 2023
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi, i need help with a formula that will give me different tiers depending on the skills each person based on tiers 1, 2 and 3

1676415930758.png

Example if they know the first 5 columns they will be tier 1, if they know the first 7 they will be tier 2 etc
 

Attachments

  • 1676415783476.png
    1676415783476.png
    22.5 KB · Views: 5

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
how about something like

=IF(COUNTIF(C2:O2,"X")=13,"Tier 5",IF(COUNTIF(C2:M2,"X")=11,"Tier 4",IF(COUNTIF(C2:K2,"X")=9,"Tier 3",IF(COUNTIF(C2:I2,"X")=7,"Tier 2",IF(COUNTIF(C2:G2,"X")=5,"Tier 1","No Tier")))))

Book2
ABCDEFGHIJKLMNOPQ
1
2xxxxxTier 1
3xxxxxxxTier 2
4xxxxxxxxxTier 3
5xxxxxxxxxxxTier 4
6xxxxxxxxxxxxxTier 5
7No Tier
Sheet1
Cell Formulas
RangeFormula
Q2:Q7Q2=IF(COUNTIF(C2:O2,"X")=13,"Tier 5",IF(COUNTIF(C2:M2,"X")=11,"Tier 4",IF(COUNTIF(C2:K2,"X")=9,"Tier 3",IF(COUNTIF(C2:I2,"X")=7,"Tier 2",IF(COUNTIF(C2:G2,"X")=5,"Tier 1","No Tier")))))



Book2
ABCDEFGHIJKLMNOPQ
1
2xxxxxTier 1
3xxxxxxxTier 2
4xxxxxxxxNo Tier
5xxxxxxxxxxTier 1
6xxxxxxxxxxxTier 2
7No Tier
Sheet1
Cell Formulas
RangeFormula
Q2:Q7Q2=IF(COUNTIF(C2:O2,"X")=13,"Tier 5",IF(COUNTIF(C2:M2,"X")=11,"Tier 4",IF(COUNTIF(C2:K2,"X")=9,"Tier 3",IF(COUNTIF(C2:I2,"X")=7,"Tier 2",IF(COUNTIF(C2:G2,"X")=5,"Tier 1","No Tier")))))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,463
Messages
6,124,965
Members
449,201
Latest member
Jamil ahmed

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