Help Copying Inderect Formula

leehowardblair

New Member
Joined
Jul 18, 2011
Messages
9
Here is the formula I am using on sheet HOME at cell A1:

=INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!A1")

I am using a user input on the sheet EVENT INFORMATION in cell C10 to then return the information from the selected sheet's cell A1.

I want to be able to copy this formula to the whole sheet, so that I am basically changing the contents of the sheet HOME to match that of the sheet that the user inputs on the EVENT INFORMATION sheet. I need to do this, because I have a 3rd part program that links to this information, but will always link to the HOME sheet, regardless of what sheet the user actually selects.

Right now, if i copy/paste or drag the formula, I keep getting the exact same formula. The A1 is not changing.

Thanks for your help in advance!
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Here is the formula I am using on sheet HOME at cell A1:

=INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!A1")

I am using a user input on the sheet EVENT INFORMATION in cell C10 to then return the information from the selected sheet's cell A1.

I want to be able to copy this formula to the whole sheet, so that I am basically changing the contents of the sheet HOME to match that of the sheet that the user inputs on the EVENT INFORMATION sheet. I need to do this, because I have a 3rd part program that links to this information, but will always link to the HOME sheet, regardless of what sheet the user actually selects.

Right now, if i copy/paste or drag the formula, I keep getting the exact same formula. The A1 is not changing.

Thanks for your help in advance!
This formula entered in cell A1:

=INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!"&ADDRESS(ROWS(A$1:A1),COLUMNS($A1:A1)))

Then drag copy in any direction.
 
Upvote 0
Do you know if there is a way to adjust the formula to not return a 0 if there is nothing in that cell?

I know of ISBLANK, but I am not sure how to incorporate it into this formula with so much going on already!
 
Upvote 0
Do you know if there is a way to adjust the formula to not return a 0 if there is nothing in that cell?

I know of ISBLANK, but I am not sure how to incorporate it into this formula with so much going on already!
It'll make the formula twice as long.

=IF(INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!"&ADDRESS(ROWS(A$1:A1),COLUMNS($A1:A1)))="","",INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!"&ADDRESS(ROWS(A$1:A1),COLUMNS($A1:A1))))
 
Upvote 0
Based on the information given try

=INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!RC",0)&""

This will blank empty cells, but it formats numbers (including dates) as text.
 
Upvote 0
Based on the information given try

=INDIRECT("'"&'EVENT INFORMATION'!$C$10&"'!RC",0)&""

This will blank empty cells, but it formats numbers (including dates) as text.
I like most of that as long as there is no numeric data. Good thinking! :beerchug:
 
Upvote 0

Forum statistics

Threads
1,224,616
Messages
6,179,911
Members
452,949
Latest member
beartooth91

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