Reputation: 13
I have cell addresses in one worksheet formatted as text strings (e.g. "A1", "B22", "F332") and I'd like to return the contents of those particular cell addresses from another worksheet. How do I do this?
Upvotes: 1
Views: 23
Reputation: 96753
Use INDIRECT():
=INDIRECT("Sheet3!" & A1)
This gets the contents of cell A1 from Sheet3.
If your sheetname includes blanks, encapsulate it in single quotes.
Upvotes: 1