Referencing the same cell on different sheets for a summary sheet

JMillz

New Member
Joined
Dec 3, 2012
Messages
6
I am trying to create a summary sheet that pulls information from all the work sheets in the work book.

Each sheet is identical from with the exception of the information and the naming convention is (#the the number)
The summary sheet has 5 columns Author (B8), Date Initiated (B17), Responder(B36), Date Responded (D36), Subject (B10).

I have over 100 individual sheets and am using =T('#1'!$B$8) to get the information in cell B8 on the first sheet. How do I pull the formula down so that I don't have to retype the sheet name in to every cell?
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
I am trying to create a summary sheet that pulls information from all the work sheets in the work book.

Each sheet is identical from with the exception of the information and the naming convention is (#the the number)
The summary sheet has 5 columns Author (B8), Date Initiated (B17), Responder(B36), Date Responded (D36), Subject (B10).

I have over 100 individual sheets and am using =T('#1'!$B$8) to get the information in cell B8 on the first sheet. How do I pull the formula down so that I don't have to retype the sheet name in to every cell?

Where do you enter this

=T('#1'!$B$8)

formula?
 
Upvote 0
=T('#1'!$B$8) is the formula i used in the summary sheet to get the authors name, which is in cell B8 of all the sheets and it is a formula that works.

What I want is to be able to drag it down but have it reference the next sheet. The naming convention for the sheets is #then the number. For example #1, #2, #3,#4 and so on till #100.

I don't want to have to retype the formula for each sheet. Just drag it down, but when I drag it, it just stays exactly the same.

I hope that explains what I want.
 
Upvote 0
=T('#1'!$B$8) is the formula i used in the summary sheet to get the authors name, which is in cell B8 of all the sheets and it is a formula that works.

What I want is to be able to drag it down but have it reference the next sheet. The naming convention for the sheets is #then the number. For example #1, #2, #3,#4 and so on till #100.

I don't want to have to retype the formula for each sheet. Just drag it down, but when I drag it, it just stays exactly the same.

I hope that explains what I want.

You did not mention the cell location of the formula. Assuming that it is A2 (Adjust to suit), something like,

=T(INDIRECT("'#"&ROWS($A$2:A2)&"'!B8"))
 
Upvote 0
Awesome. Now how can I do this for the date columns?? Date initated (which is cell B17) and Date Responded (which is cell D36)
 
Upvote 0
Thanks so much!! Now I'm curious.... how does "'#"&ROWS($A$2:A2)&" work to change the sheet?? I don't understand the logic.
 
Upvote 0

Forum statistics

Threads
1,223,237
Messages
6,170,924
Members
452,366
Latest member
TePunaBloke

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