0

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?

Jared
  • 45

1 Answers1

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