Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adding totals to new sheet

I have a workbook with 7 sheets. Each sheet has several colums with each
having a dollar total and quanity ordered. How do I make all the totals from
each sheet total up on the last sheet for a grand total? I need to know how
many dollars were spent and how many of each product was ordered.

Doug

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Adding totals to new sheet

=SUM(Sheet1:Sheet7!A20)

"Doug" wrote:

I have a workbook with 7 sheets. Each sheet has several colums with each
having a dollar total and quanity ordered. How do I make all the totals from
each sheet total up on the last sheet for a grand total? I need to know how
many dollars were spent and how many of each product was ordered.

Doug

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adding totals to new sheet

Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and
Cheer. I want their totals on the Main sheet. I am tracking my youth
football teams fundraising. Should I rename them back to sheet 1,2,
etc..........

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com
"Teethless mama" wrote in message
...
=SUM(Sheet1:Sheet7!A20)

"Doug" wrote:

I have a workbook with 7 sheets. Each sheet has several colums with each
having a dollar total and quanity ordered. How do I make all the totals
from
each sheet total up on the last sheet for a grand total? I need to know
how
many dollars were spent and how many of each product was ordered.

Doug

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com





  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Adding totals to new sheet

The syntax is essentially first_sheet:last_sheet, so you could make it
Main:Cheer if these are the outer sheets of the range of sheets to
want to add from - ensure that the main sheet is to the left or right
(i.e. outside of the range of sheets in your file).

Hope this helps.

Pete

On Jul 31, 11:50 pm, "Doug" wrote:
Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and
Cheer. I want their totals on the Main sheet. I am tracking my youth
football teams fundraising. Should I rename them back to sheet 1,2,
etc..........

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com"Teethless mama" wrote in message

...



=SUM(Sheet1:Sheet7!A20)


"Doug" wrote:


I have a workbook with 7 sheets. Each sheet has several colums with each
having a dollar total and quanity ordered. How do I make all the totals
from
each sheet total up on the last sheet for a grand total? I need to know
how
many dollars were spent and how many of each product was ordered.


Doug


--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com- Hide quoted text -


- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adding totals to new sheet

I renamed the sheets to sheet 1 and so on. Works great.
Thanks

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com
"Pete_UK" wrote in message
ups.com...
The syntax is essentially first_sheet:last_sheet, so you could make it
Main:Cheer if these are the outer sheets of the range of sheets to
want to add from - ensure that the main sheet is to the left or right
(i.e. outside of the range of sheets in your file).

Hope this helps.

Pete

On Jul 31, 11:50 pm, "Doug" wrote:
Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and
Cheer. I want their totals on the Main sheet. I am tracking my youth
football teams fundraising. Should I rename them back to sheet 1,2,
etc..........

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com"Teethless mama"
wrote in message

...



=SUM(Sheet1:Sheet7!A20)


"Doug" wrote:


I have a workbook with 7 sheets. Each sheet has several colums with
each
having a dollar total and quanity ordered. How do I make all the
totals
from
each sheet total up on the last sheet for a grand total? I need to
know
how
many dollars were spent and how many of each product was ordered.


Doug


--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com- Hide quoted
text -


- Show quoted text -







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Adding totals to new sheet

Doug

Insert a dummy sheet before all sheets....name it First

Insert a dummy sheet after all sheets....name it Last

Formula is then =First:Last!A20

Any new sheets can be inserted between First and Last like the jam in a
sandwich.


Sheet names are then inconsequential.


Gord Dibben MS Excel MVP

On Tue, 31 Jul 2007 17:50:15 -0500, "Doug" wrote:

Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and
Cheer. I want their totals on the Main sheet. I am tracking my youth
football teams fundraising. Should I rename them back to sheet 1,2,
etc..........


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Adding totals to new sheet

That worked........ One more question. Need to multiply a number in a colum
times a dollar amount. Like quantity of 126 x $5.00 = ?

--
----------------------------------------------------
This mailbox protected from unsolicited email by Spam Alarm
from Dignity Software http://www.dignitysoftware.com
"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Doug

Insert a dummy sheet before all sheets....name it First

Insert a dummy sheet after all sheets....name it Last

Formula is then =First:Last!A20

Any new sheets can be inserted between First and Last like the jam in a
sandwich.


Sheet names are then inconsequential.


Gord Dibben MS Excel MVP

On Tue, 31 Jul 2007 17:50:15 -0500, "Doug" wrote:

Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and
Cheer. I want their totals on the Main sheet. I am tracking my youth
football teams fundraising. Should I rename them back to sheet 1,2,
etc..........




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Adding totals to new sheet

Assuming dollars are in column A

In B1 enter =A1*126

Or if dollars in column A and quantities in column B enter in C1 =A1*B1

Or if the multiplier for all dollars is in a cell use =A1*$D$1 where D1 is 126

Copy any of those down by dragging on the fill handle(small black square at
lower right corner of the cell.

Note the $ signs in some references and not in others.

No $ signs means that cell reference will increment as copied.

The $ sign will fix the cell reference so's it doesn't change.


Gord


On Tue, 31 Jul 2007 18:56:52 -0500, "Doug" wrote:

That worked........ One more question. Need to multiply a number in a colum
times a dollar amount. Like quantity of 126 x $5.00 = ?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding totals after filtering The Countryman Excel Discussion (Misc queries) 2 March 5th 07 05:32 PM
Adding up multiple worksheets by name and totals Killer Excel Worksheet Functions 6 January 2nd 07 07:35 PM
Adding category totals [email protected] Excel Worksheet Functions 3 June 15th 06 11:47 PM
Formula for adding up totals of groups koba Excel Discussion (Misc queries) 4 November 23rd 05 09:42 PM
Formula for adding several worksheet totals karatefem Excel Discussion (Misc queries) 9 August 19th 05 03:47 AM


All times are GMT +1. The time now is 01:58 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"