Forum Discussion

kittenmeants's avatar
kittenmeants
Brass Contributor
Oct 02, 2023
Solved

IF THEN formula help with multiple criteria (selections)

Hello!

 

I need support in creating a formula(s) that satisfy these requirements:

 

Current Layout:
Store Manager NameOverall Performance (Can only be Red, Green, Yellow)

Career Mobility (Can only be Upward, Lateral, Well Placed)

XGreenUpward
YGreenUpward
ZRedWell Placed
ZZYellowWell Placed

 

New Layout Needed:
Talent TierOverall PerformanceCareer Mobility
TopGreenUpward
CriticalGreen
Lateral or Well Placed
CoreYellow
Lateral or Well Placed
UnderperformingRedWell Placed

 

I'm currently at =IF(AND(H2="Green",J2="Upward"),"Top","")

 

I wasn't sure how to make that a simple formula with all the requirements needed. 

 

Thanks!

  • kittenmeants 

    I'd create a two-dimensional lookup range:

    Here it's on the same sheet, but it can be on another sheet, even a hidden one.

    The formula in D2 can then be

    =INDEX($I$3:$K$5,MATCH(B2,$H$3:$H$5,0),MATCH(C2,$I$2:$K$2,0))

  • kittenmeants 

    I'd create a two-dimensional lookup range:

    Here it's on the same sheet, but it can be on another sheet, even a hidden one.

    The formula in D2 can then be

    =INDEX($I$3:$K$5,MATCH(B2,$H$3:$H$5,0),MATCH(C2,$I$2:$K$2,0))

    • kittenmeants's avatar
      kittenmeants
      Brass Contributor
      Thank you so much! I am not great at INDEX formulas so that was a little tricky, but did the job and made it wayyyy easier than me creating a million formulas.

Resources