Forum Discussion
SLGiguere
Sep 25, 2023Copper Contributor
Excel - Return a specific text value, based on values of 2 other cells
Hello, I would be grateful if someone could help with a formula to accomplish the following: Based on combinations of the text values in cells A2 and B2, I would like C2 to return a specific text...
HansVogelaar
Sep 25, 2023MVP
Create a lookup table like this:
Let's say the above is on Sheet2.
On the sheet with the Level of Influence in A2 and the Level of Impact in B2, enter the following formula in C2:
=INDEX(Sheet2!$C$3:$F$6,MATCH(A2,Sheet2!$B$3:$B$6,0),MATCH(B2,Sheet2!$C$2:$F$2,0))