ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I add data from cells in different worksheets? (https://www.excelbanter.com/excel-worksheet-functions/122891-how-do-i-add-data-cells-different-worksheets.html)

BCC

How do I add data from cells in different worksheets?
 
I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!

Gord Dibben

How do I add data from cells in different worksheets?
 
If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!



BCC

How do I add data from cells in different worksheets?
 
Thanks for the advice. Yes, the totals of each category are in the same cell
on the different sheets. I just tried your suggestion and I get an error --
the cell reads "#NAME?". Perhaps I should mention that I named the sheets.
Do I need to use the names of the sheets instead of Sheet 1, etc? I tired
this and still get the error. Advice?

"Gord Dibben" wrote:

If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!




Gord Dibben

How do I add data from cells in different worksheets?
 
If your sheet names have spaces, you must add quotes to the names.

So formula would read =SUM('your sheet:my sheet'!H34)

Try this trick.

Insert a new worksheet at beginning.

Name it Start

Insert a new worksheet at end.

Name it End

Then where you want the formula =SUM(Start:End!H34)

This will SUM H34 on all sheets between Start and End

With this method, you can insert more new sheets between without having to
change the formula.


Gord


On Sat, 16 Dec 2006 15:15:01 -0800, BCC wrote:

Thanks for the advice. Yes, the totals of each category are in the same cell
on the different sheets. I just tried your suggestion and I get an error --
the cell reads "#NAME?". Perhaps I should mention that I named the sheets.
Do I need to use the names of the sheets instead of Sheet 1, etc? I tired
this and still get the error. Advice?

"Gord Dibben" wrote:

If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!





Diana M

How do I add data from cells in different worksheets?
 
Dear to whom it may concern,

How can I add values from 2 separate worksheets. The values are all located
in different cells on both sheets.

Thank you.

"Gord Dibben" wrote:

If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!




Dave Peterson

How do I add data from cells in different worksheets?
 
='Some sheet name here'!a1 + 'Some other sheet name here'!x99

Change the names of the sheets and the addresses of the cells.

Diana M wrote:

Dear to whom it may concern,

How can I add values from 2 separate worksheets. The values are all located
in different cells on both sheets.

Thank you.

"Gord Dibben" wrote:

If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!




--

Dave Peterson

Gord Dibben

How do I add data from cells in different worksheets?
 
If cells are randomly dispersed you are stuck with manually creating
formulas.

Is there any sort of pattern you can pick up on to make it easier?


Gord


On Wed, 20 Aug 2008 09:40:15 -0700, Diana M <Diana
wrote:

Dear to whom it may concern,

How can I add values from 2 separate worksheets. The values are all located
in different cells on both sheets.

Thank you.

"Gord Dibben" wrote:

If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!





gnalet

How do I add data from cells in different worksheets?
 
thank u
extremely good
if u have any other tricks could u please email tome i would be most grateful
gerry

"Gord Dibben" wrote:

If your sheet names have spaces, you must add quotes to the names.

So formula would read =SUM('your sheet:my sheet'!H34)

Try this trick.

Insert a new worksheet at beginning.

Name it Start

Insert a new worksheet at end.

Name it End

Then where you want the formula =SUM(Start:End!H34)

This will SUM H34 on all sheets between Start and End

With this method, you can insert more new sheets between without having to
change the formula.


Gord


On Sat, 16 Dec 2006 15:15:01 -0800, BCC wrote:

Thanks for the advice. Yes, the totals of each category are in the same cell
on the different sheets. I just tried your suggestion and I get an error --
the cell reads "#NAME?". Perhaps I should mention that I named the sheets.
Do I need to use the names of the sheets instead of Sheet 1, etc? I tired
this and still get the error. Advice?

"Gord Dibben" wrote:

If the totals on each worksheet are in the same cell you can set up a 3D
reference to them on one sheet.

=SUM(Sheet1:Sheet10!H34) where H34 on each sheet holds a total for a category
on that sheet.

If the cells are randomly placed on each sheet it becomes more difficult.


Gord Dibben MS Excel MVP

On Sat, 16 Dec 2006 12:43:01 -0800, BCC wrote:

I have created an Excel file with a worksheet for each month's expenses. I
would like to have a final worksheet to sum all the different categories.
How do I add cells from multiple worksheets?
Thanks!!






All times are GMT +1. The time now is 10:03 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com