Link to home
Start Free TrialLog in
Avatar of shampouya
shampouya

asked on

How do I use OFFSET in Excel 2010 to refer to a formula in a different sheet?

In my excel sheet, I can use this formula and it gives me the value right below cell B4 on another sheet:

=OFFSET('subscriber-count'!$B$4,1,0,1,1)

But if I type 'subscriber-count'!$B$4 into cell A1 of my sheet, this formula does not work:

=OFFSET(A1,1,0,1,1)

I realize that happens because A1 is an address and not a value. How do I make excel recognize A1's value of 'subscriber-count'!$B$4 rather than its address of A1?
ASKER CERTIFIED SOLUTION
Avatar of Saqib Husain
Saqib Husain
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
=OFFSET(INDIRECT(A1),1,0,1,1)

Where A1 contains the Cell reference.