Incrementing rows with Indirect function

FryGirl

Well-known Member
Joined
Nov 11, 2008
Messages
1,368
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
I have the following formula =DataSheet!A2, but need to change the sheet name based on a sheet name input in A1 of same sheet.

If I use this =INDIRECT("'" & $A$1 & "'!A2") it works fine for the first cell, but when I drag it down the reference remains A2.

Can somebody tell me what I am missing here?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try:
Code:
=INDIRECT("'"&$A$1&"'!A"&ROW((A2)))
 
Upvote 0
I have the following formula =DataSheet!A2, but need to change the sheet name based on a sheet name input in A1 of same sheet.

If I use this =INDIRECT("'" & $A$1 & "'!A2") it works fine for the first cell, but when I drag it down the reference remains A2.

Can somebody tell me what I am missing here?
One way...

=INDIRECT("'"&$A$1&"'!A"&ROWS(A$1:A2))
 
Upvote 0
Thank you very much Biff & Joe. I see now where I was going wrong. I tried the Row/s method but I was failing on the syntax. Thanks again.
 
Upvote 0

Forum statistics

Threads
1,224,566
Messages
6,179,551
Members
452,927
Latest member
rows and columns

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top