Linking Formula

D

Don S

I have a workbook with multiple data sheets. Each data sheet has a sum total
in cell B4. I created a summary sheet to pull all the totals into it. I
entered the following linking formula: ='(1)'!$B$4, now I want to drag this
formula down and have it automatically change to the next sheet. For example
='(2)'!$B$4, ='(3)'!$B$4, ='(4)'!$B$4 and so on… Is this possible?
 
G

Gord Dibben

In A1 of summary sheet.

=INDIRECT(ROW()&"!B4")

Copy down.

Assumes your sheets are named 1, 2, 3, 4 etc.

If named Sheet1, Sheet2 etc.

=INDIRECT("Sheet" & (ROW()) & "!B4")


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top