How to click and drag down an "Indirect" formula

GuyGadois

Active Member
Joined
Jan 12, 2009
Messages
342
Office Version
  1. 2019
Platform
  1. Windows
I have the following formula and I want to drag it down 100 cells and have the cell references update and not keep the original reference. Is that possible?

=IF(INDIRECT("'"&Reference_Sheet&"'"&"!A5")="","",INDIRECT("'"&Reference_Sheet&"'"&"!A5"))

I want the next cell down to read
=IF(INDIRECT("'"&Reference_Sheet&"'"&"!A6")="","",INDIRECT("'"&Reference_Sheet&"'"&"!A6"))

but it doesn't, it keeps the original cell reference the entire way down.

Any help is appreciated

Guy
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Perhaps:

=IF(INDIRECT("'"&Reference_Sheet&"'!"&CELL("address",A5))="","",INDIRECT("'"&Reference_Sheet&"'!"&CELL("address",A5)))

or if you are returning text data:

=INDIRECT("'"&Reference_Sheet&"'!"&CELL("address",A5))&""
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,921
Members
449,094
Latest member
teemeren

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