The following three formulas all work individually, but I can't seem to get them to work together in one fomula.
IF(AND($AE$3="A",R5<=9),VLOOKUP(AD5,$BN$162:$BO$167,2,FALSE),IF(AND($AE$3="A",R5>=10),VLOOKUP(AD5,$BN$162:$BP$167,3,FALSE)))
IF(AND($AE$3="B",R5<=9),VLOOKUP(AD5,$BN$169:$BO$174,2,FALSE),IF(AND($AE$3="B",R5>=10),VLOOKUP(AD5,$BN$169:$BP$174,3,FALSE)))
IF(AND($AE$3="C",R5<=9),VLOOKUP(AD5,$BN$176:$BO$181,2,FALSE),IF(AND($AE$3="C",R5>=10),VLOOKUP(AD5,$BN$176:$BP$181,3,FALSE)))
I am trying to return data from three small tables, based on two differing criteria for each table.
Hopefully someone can point me in the right direction.
IF(AND($AE$3="A",R5<=9),VLOOKUP(AD5,$BN$162:$BO$167,2,FALSE),IF(AND($AE$3="A",R5>=10),VLOOKUP(AD5,$BN$162:$BP$167,3,FALSE)))
IF(AND($AE$3="B",R5<=9),VLOOKUP(AD5,$BN$169:$BO$174,2,FALSE),IF(AND($AE$3="B",R5>=10),VLOOKUP(AD5,$BN$169:$BP$174,3,FALSE)))
IF(AND($AE$3="C",R5<=9),VLOOKUP(AD5,$BN$176:$BO$181,2,FALSE),IF(AND($AE$3="C",R5>=10),VLOOKUP(AD5,$BN$176:$BP$181,3,FALSE)))
I am trying to return data from three small tables, based on two differing criteria for each table.
Hopefully someone can point me in the right direction.