What if your lookup value is to the right of the information that you want VLOOKUP to return? Conventional wisdom says VLOOKUP cannot handle a negative column number in order to go left of the key.
One solution is =VLOOKUP(I7,CHOOSE({1,2},G1:G5,F1:F5),2,0)
. However, I prefer to use MATCH to find where the name is located and then use INDEX to return the correct value.
Comments
Post a Comment