Summarizing totals of all worksheets to one worksheet?

G

Guest

I have Excel 2003 and I would like to know how to carry my totals from my
monthly worksheets (which contains 4 different totals per worksheet) to a
single worksheet that would summarize all 12 worksheets and would seperately
list the annual total of all 4 totals. Right now I am having to go back and
forth between the different worksheets to enter each total (from each month)
to accomplish this task. If it could be done automatically it would help me
out greatly.
My knowledge is limited, but if you could help me I would be greatful.
Thanks,
 
P

Pete_UK

First of all, I would suggest that in your 12 monthly sheets you have
the totals on the top row - they can be set up like:

=SUM(D3:D500)

for column D, assuming you have a header row (which now becomes row2)
so that your data starts in row 3. By having a range up to 500, even if
you don't use 500 rows, this ensures that you sum all the data in that
column.

Then in your summary sheet, the formulae needed will be very similar.
Assuming you want 4 totals going across for each month, then in column
A you can enter January, February, March etc going down the column. In
column B on the same row as January, you would have a formula like:

=January!D1

where January is the name of the sheet - if the sheet is called
something like Jan 06, then the formula would be:

='Jan 06'!D1

Note the apostrophes - these are needed if the sheet name has spaces in
it.

Let's say that your other totals are in columns F H and J of the
monthly sheets. You would need these formulae to bring the January
totals into columns C D and E of the summary sheet:

C: =January!F1
D: =January!H1
E: =January!J1

For February you would have 4 similar formulae, but you would change
the name of the sheet. Similarly for all the other months.

Hope this helps.

Pete
 

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