W
whub3
I am trying to do a simple lookup in one range of cells that contain numbers
1-9 and return a result from the cell that is next to it.
1-9 and return a result from the cell that is next to it.
Kevin Vaughn said:If you need to return something to the left of your lookup range, then you
will need to use something like index/match instead of vlookup. Try this one:
=IF(A1 = "", "", INDEX($A$10:$A$18, MATCH(A1,$B$10:$B$18,0)))
whub3 said:Kevin,
Thank you. That answered my question