f0cc
f0cc

Reputation: 11

Dynamic cell reference in another worksheet by referencing string in another cell as column

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

Answers (1)

Can.U
Can.U

Reputation: 481

=INDIRECT("worksheet_1!"&A1&ROW)

OR

=INDIRECT("worksheet_1!R"&ROW&"C"&A1,)

Upvotes: 1

Related Questions