Total All entries

Jim Stewart

New Member
Joined
Oct 18, 2006
Messages
14
How do I total the records used or number of rows used on several worksheets? Also, can I get a total of the numbers in a column of another sheet.
Any help appreciated.
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Hi Jim,

Try this formulas;

Code:
=SUM(Sheet1!A:A)+SUM(Sheet2!A:A)+SUM(Sheet3!A:A)+SUM(Sheet4!A:A)+SUM(Sheet5!A:A)+SUM(Sheet6!A:A)+SUM(Sheet7!A:A)+SUM(Sheet8!A:A)

or;

Code:
=SUM(Sheet1!A:A;Sheet2!A:A;Sheet3!A:A;Sheet4!A:A;Sheet5!A:A;Sheet6!A:A;Sheet7!A:A;Sheet8!A:A)
 
Upvote 0
In the cell that you want to sum to appear, use the following formula:

Code:
=SUM(Sheet1!A:A,Sheet2!A:A,Sheet3!A:A,Sheet4!A:A,Sheet5!A:A,Sheet6!A:A,Sheet7!A:A,Sheet8!A:A)

Update the names of the sheets / references as required.
 
Upvote 0
Try these:

How do I total all the entries in Column A on 8 worksheets?
=SUM(Sheet1!A:A,Sheet2!A:A,Sheet3!A:A,Sheet4!A:A,Sheet5!A:A,Sheet6!A:A,Sheet7!A:A,Sheet8!A:A)

Also, can I get a total of the numbers in a column of another sheet.
=COUNT(Sheet1!A:A)


I am using Windows XP Professional SP2, and Excel 2003 SP2.

Have a gret day,
Stan
 
Upvote 0
Code:
=COUNTA(Sheet1!A:A;Sheet2!A:A;Sheet3!A:A;Sheet4!A:A;Sheet5!A:A;Sheet6!A:A;Sheet7!A:A;Sheet8!A:A)

Or,

Code:
=COUNTA(Sheet1!A:A)+COUNTA(Sheet2!A:A)+COUNTA(Sheet3!A:A)+COUNTA(Sheet4!A:A)+COUNTA(Sheet5!A:A)+COUNTA(Sheet6!A:A)+COUNTA(Sheet7!A:A)+COUNTA(Sheet8!A:A)

Now? :)
 
Upvote 0

Forum statistics

Threads
1,213,546
Messages
6,114,251
Members
448,556
Latest member
peterhess2002

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