Google-sheets – Help using 2 parameters to output a specific category

formulasgoogle sheetsgoogle-sheets-arrayformulagoogle-sheets-queryvlookup

I'm looking to be able to enter an "AGE" and a "V02" in a formula that tells me what "category" the person would be in ie; good, excellent, etc.

google sheets snapshot]

Best Answer

=ARRAYFORMULA(HLOOKUP(I2, {VLOOKUP(I1, A2:G, {2,3,4,5,6,7}, 1); B1:G1}, 2, 1))

0