Share via

cell value pointers

Anonymous
2020-01-14T21:15:56+00:00

Instead of a cell value that reads:

=B27

I would like to have a variable row number that references another cell.  I.e., instead of "27" as the row number, there would be a reference to a second cell that would contain the row number.  Thus, if the second cell contains 5, the first cell would have the equivalent value of  =B5.

Is that possible?

Thank you!

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2020-01-14T21:26:48+00:00

    You may use Indirect function for it.

    =INDIRECT("B"&B27)  where cell B27 contains 5.  It will fetch value of B5.

    6 people found this answer helpful.
    0 comments No comments