Formula for the total of the same cell on 16 Sheets

Akashwani

Well-known Member
Joined
Mar 14, 2009
Messages
2,911
Good day,

I have no idea on how I should go about this, so here I am again :(

I have 20 sheets all with different names.
On the sheet "Total" (in cell A4) I would like to add the total of what is in cell A2 on 16 sheets.

Surely I don't have to do something like...
=Sheet1A2,SheetpleaseA2,SheethelpmeA2,SheetAkA2,etc,etc

Is it a formula or VBA solution?
Any ideas?

Ak
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
You can try...

=SUM(Sheet1:Sheet3!A2)

with Sheet1 the first and Sheet3 the last capturing everything inbetween.
 
Upvote 0
Try,

=SUM(Sheet2:Sheet16!A2)

Not sure if it will work if you change the sheet names though?
 
Upvote 0
Hi,

Thanks for taking an interest and making a suggestion.

I cannot do it with the formulas provided due to the sheet names :(

I can do it using this.....

=SUM(September09!N4+October09!N4+November09!N4+December09!N4+January10!N4+February10!N4+March10!N4+April10!N4+May10!N4+
June10!N4+July10!N4+August10!N4+September10!N4+October10!N4+November10!N4+December10!N4)

This is my real data.

It just seems a long winded way to go about it.
Any ideas on how this can be shortened?
I need to do another 3 formulas like this but with different cell references!!

Ak
 
Upvote 0
Insert a sheet before the first sheet to be summed and rename it First. Leave it blank. Similarly add a Last sheet at the end. You can then use

=SUM(First:Last!A1)

for example.
 
Upvote 0
K I S S

That is what somone told me years ago.

Your solution is perfect Peter,
thanks for coming to my rescue again.
I do insist on doing everything the hard way!

Thanks jrb and rs2k.

Ak
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,289
Members
452,902
Latest member
Knuddeluff

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