Raj
Raj

Reputation: 3462

Referencing offset cells with INDIRECT() function

Suppose that I have a cell, lets say Sheet2.A1, with the value: Sheet1.A10. It contains the information from where to fetch the data.

Now I would like to fetch this data, which I do with INDIRECT(Sheet2.A1). However, I would further like to extract the data from some cells below in the same column. So suppose I would like to extract data from Sheet1.A11 and Sheet1.A12.

How can I calculate this offset to extract the data?

Is there any extension to the INDIRECT function where I can add this offset of one or two columns below?

Upvotes: 1

Views: 2343

Answers (1)

Raj
Raj

Reputation: 3462

I resolved it using =OFFSET(INDIRECT(Sheet2.A1),1,0) and =OFFSET(INDIRECT(Sheet2.A1),2,0)

Upvotes: 1

Related Questions