Summing Multiple pages using the Address Function to specify the Cell

caius102

New Member
Joined
May 8, 2010
Messages
1
Hello, I've spent hours searching and can't find why what I'm trying to do won't work.

I want to sum the same cell accross multiple pages but using the Address function to determine the cell to sum.

SUM(First:Last!$C$4) works, and ADDRESS(4,3) returns a value of $C$4, but SUM(First:Last!ADDRESS(4,3)) just says 'There's a problem with this Formula'.

What I want to be able to do is use the sum function above, but calculate the address of the cell ($C$4 in the example) based calculations to determine the column and row of the cell that is being summed across the pages.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Welcome to the board.

The Excel 3-D functions are pretty limited. They don't have a lot of options. In particular, they don't work with INDIRECT or OFFSET. About the best option I can suggest is:

AB
1Sheet210
2Sheet3
3

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Array Formulas
CellFormula
B1{=SUM(SUBTOTAL(9,INDIRECT(A1:A2&"!"&ADDRESS(4,3))))}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>



Put a list of sheets you want to sum in A1:A2, then use the array formula in B1. If you want to leave some empty cells on the bottom of the sheet list, use this version:

=SUM(IFERROR(SUBTOTAL(9,INDIRECT(A1:A5&"!"&ADDRESS(4,3))),0))
with Control+Shift+Enter.

If neither of those work for you, then you'll probably need a UDF.
 
Upvote 0

Forum statistics

Threads
1,215,700
Messages
6,126,285
Members
449,308
Latest member
VerifiedBleachersAttendee

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