Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8
Default Automatic Totals

How do I arrange for the sum totals in the last line on a worksheet with
several columns of figures will automatically adjust itself when I enter an
additional line or lines of figures, so that I do not have to use the
totalling tool every time I make entries on the worksheet.


  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 161
Default Automatic Totals

"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet with
several columns of figures will automatically adjust itself when I enter
an additional line or lines of figures, so that I do not have to use the
totalling tool every time I make entries on the worksheet.



Make sure that the range summed contains one or more extra rows - then just
insert your new rows before the end of the range....


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,886
Default Automatic Totals

Hi

If you have XL2003, you can use DataListCreate list which will
automatically extend formulae as you add more rows to the list, with a
toggle to switch on or off the Totals at the bottom of the list.

For XL2007, an improved version exists with InsertTable.

--
Regards

Roger Govier


"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet
with several columns of figures will automatically adjust itself when
I enter an additional line or lines of figures, so that I do not have
to use the totalling tool every time I make entries on the worksheet.



  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8
Default Automatic Totals

Hi,

I tried it and it worked only when I included the additional lines in the
Sum but when I added another line after that your suggestion did not work.
So, what did I do wrong?
Incidentally this is on Office 2000.


"Gordon" wrote in message
...
"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet with
several columns of figures will automatically adjust itself when I enter
an additional line or lines of figures, so that I do not have to use the
totalling tool every time I make entries on the worksheet.



Make sure that the range summed contains one or more extra rows - then
just insert your new rows before the end of the range....



  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 161
Default Automatic Totals

"Zygy" wrote in message
...
Hi,

I tried it and it worked only when I included the additional lines in the
Sum but when I added another line after that your suggestion did not work.
So, what did I do wrong?
Incidentally this is on Office 2000.


If you sum (say) A1:A35, but your actual data is A1:A25 and you insert a row
at A26, then the sum should still work.




  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Automatic Totals

Zygy

Assuming your current data is in A1:A10

Enter this in A11

=SUM(A1:INDEX(A:A,ROW()-1))

As you insert rows above A11 it will include the new rows.


Gord Dibben MS Excel MVP

On Tue, 15 May 2007 13:42:56 +0100, "Zygy" wrote:

Hi,

I tried it and it worked only when I included the additional lines in the
Sum but when I added another line after that your suggestion did not work.
So, what did I do wrong?
Incidentally this is on Office 2000.


"Gordon" wrote in message
...
"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet with
several columns of figures will automatically adjust itself when I enter
an additional line or lines of figures, so that I do not have to use the
totalling tool every time I make entries on the worksheet.



Make sure that the range summed contains one or more extra rows - then
just insert your new rows before the end of the range....



  #8   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8
Default Automatic Totals

Just to make it absolutely sure I have the formula right. My entries in
Col.C are up to line 79, so my formula to enter in Col.C line 80 should
read -

=SUM (C1:INDEX(C:C,ROW()-1)) Am I correct?

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Zygy

Assuming your current data is in A1:A10

Enter this in A11

=SUM(A1:INDEX(A:A,ROW()-1))

As you insert rows above A11 it will include the new rows.


Gord Dibben MS Excel MVP

On Tue, 15 May 2007 13:42:56 +0100, "Zygy" wrote:

Hi,

I tried it and it worked only when I included the additional lines in the
Sum but when I added another line after that your suggestion did not work.
So, what did I do wrong?
Incidentally this is on Office 2000.


"Gordon" wrote in message
.. .
"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet
with
several columns of figures will automatically adjust itself when I
enter
an additional line or lines of figures, so that I do not have to use
the
totalling tool every time I make entries on the worksheet.



Make sure that the range summed contains one or more extra rows - then
just insert your new rows before the end of the range....





  #9   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 22,906
Default Automatic Totals

Yes, the formula would be entered into C80


BTW............get rid of the <space after =SUM


Gord

On Wed, 16 May 2007 13:02:09 +0100, "Zygy" wrote:

Just to make it absolutely sure I have the formula right. My entries in
Col.C are up to line 79, so my formula to enter in Col.C line 80 should
read -

=SUM (C1:INDEX(C:C,ROW()-1)) Am I correct?

"Gord Dibben" <gorddibbATshawDOTca wrote in message
.. .
Zygy

Assuming your current data is in A1:A10

Enter this in A11

=SUM(A1:INDEX(A:A,ROW()-1))

As you insert rows above A11 it will include the new rows.


Gord Dibben MS Excel MVP

On Tue, 15 May 2007 13:42:56 +0100, "Zygy" wrote:

Hi,

I tried it and it worked only when I included the additional lines in the
Sum but when I added another line after that your suggestion did not work.
So, what did I do wrong?
Incidentally this is on Office 2000.


"Gordon" wrote in message
. ..
"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet
with
several columns of figures will automatically adjust itself when I
enter
an additional line or lines of figures, so that I do not have to use
the
totalling tool every time I make entries on the worksheet.



Make sure that the range summed contains one or more extra rows - then
just insert your new rows before the end of the range....





  #10   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 8
Default Automatic Totals

Your formula works fine! Thank you and thank you also to all others who
contributed to my posting.
"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Yes, the formula would be entered into C80


BTW............get rid of the <space after =SUM


Gord

On Wed, 16 May 2007 13:02:09 +0100, "Zygy" wrote:

Just to make it absolutely sure I have the formula right. My entries in
Col.C are up to line 79, so my formula to enter in Col.C line 80 should
read -

=SUM (C1:INDEX(C:C,ROW()-1)) Am I correct?

"Gord Dibben" <gorddibbATshawDOTca wrote in message
. ..
Zygy

Assuming your current data is in A1:A10

Enter this in A11

=SUM(A1:INDEX(A:A,ROW()-1))

As you insert rows above A11 it will include the new rows.


Gord Dibben MS Excel MVP

On Tue, 15 May 2007 13:42:56 +0100, "Zygy" wrote:

Hi,

I tried it and it worked only when I included the additional lines in
the
Sum but when I added another line after that your suggestion did not
work.
So, what did I do wrong?
Incidentally this is on Office 2000.


"Gordon" wrote in message
.. .
"Zygy" wrote in message
...
How do I arrange for the sum totals in the last line on a worksheet
with
several columns of figures will automatically adjust itself when I
enter
an additional line or lines of figures, so that I do not have to use
the
totalling tool every time I make entries on the worksheet.



Make sure that the range summed contains one or more extra rows - then
just insert your new rows before the end of the range....







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
Automatic update of spreadsheet & automatic update between workboo Losva Excel Worksheet Functions 6 September 12th 08 03:22 PM
Summing Weekly Totals into Monthly Totals steph44haf Excel Worksheet Functions 3 July 5th 06 04:51 PM
Automatic Totals/Coloured Cells Ian.UK Excel Worksheet Functions 1 October 4th 05 10:56 AM
How do I sum YTD totals based on monthly totals Bsgrad02 Excel Discussion (Misc queries) 3 July 12th 05 04:59 PM
Comparing/matching totals in a column to totals in a row Nicole L. Excel Worksheet Functions 3 January 27th 05 10:42 PM


All times are GMT +1. The time now is 02:49 AM.

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"