For example, if the value in I31 equals a value in column A (lets say A5) I want to display B5 (so same row) in a new cell (say I32). How can I do this?
Asked
Active
Viewed 1,496 times
1 Answers
0
In the described 4 cell example you could use:
=IF(ISERROR(MATCH(I31,A1:A56,0)),"Value Not Found",INDIRECT(CONCATENATE("B",MATCH(I31,A1:A56,0)),TRUE))
EngBIRD
- 148
-
Thanks! I got it! I actually was able to use =LOOKUP(). Worked the first time! – Jared Apr 03 '15 at 03:30