Reputation: 11
Looking for a way to formulate a very typical =([worksheet]![column][row]) type formula where only the [column] is dynamic. And by dynamic I am thinking of reading the string of another cell:
I am currently working on some financial modeling where I am extracting the numbers from a sheet with only annual numbers/ outlay to a sheet where it is shown in (quarter+annual) in consecutive column. So obviously my idea is to work around the simple "dragging" the formula, give the outlay is not align (where one is annual-annual-annual ... and the other is quarter-quarter-quarter-quarter-annual...).
Greatly appreciate any help!
Upvotes: 1
Views: 683
Reputation: 481
=INDIRECT("worksheet_1!"&A1&ROW)
OR
=INDIRECT("worksheet_1!R"&ROW&"C"&A1,)
Upvotes: 1