#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Running Total

Hello Group Excel,

I am using Excel 2003.

My computation Columns are "E" to "J", and starts on Row 15.

Column "I" is the Total.

Column "J" is the Running Total.

With the following data:

E F G H I J

..12 2.12 .09 -3.25 -.92 -.92

..08 1.99 .03 -2.99 -.89 -1.81

..10 2.05 .07 -3.15 -.93 -2.74

((In the "J" Column when there is no)) -2.74
((amount in Columns "E" to "I",))
((through Row 42 shows the last total.)) -2.74

-2.74

-2.74


After the final total of -2.74, how can I
eliminate subsequent amounts of -2.74
from appearing in the Running Total
Column, until I get to the 42nd Row
that will show the grand total?

Thank you for your help in this matter.

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default Running Total

DisMusBeDaPlaz wrote:
Hello Group Excel,

I am using Excel 2003.

My computation Columns are "E" to "J", and starts on Row 15.

Column "I" is the Total.

Column "J" is the Running Total.

With the following data:

E F G H I J

.12 2.12 .09 -3.25 -.92 -.92

.08 1.99 .03 -2.99 -.89 -1.81

.10 2.05 .07 -3.15 -.93 -2.74

((In the "J" Column when there is no)) -2.74
((amount in Columns "E" to "I",))
((through Row 42 shows the last total.)) -2.74


-2.74


-2.74


After the final total of -2.74, how can I
eliminate subsequent amounts of -2.74
from appearing in the Running Total
Column, until I get to the 42nd Row
that will show the grand total?

Thank you for your help in this matter.



Something like this in J15:J41 should work:


=IF(I15<"",SUM(I$15:I15),"")
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,722
Default Running Total

In column J2, copied down to J41:
=IF(ISBLANK(I2),"",SUM(I$2:I2))

In J42:
=SUM(I2:I41)

Or, if you really want a single formula <grin:
=IF(OR(ISBLANK(I2),ROW()<42),"",SUM(I$2:I2))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"DisMusBeDaPlaz" wrote:

Hello Group Excel,

I am using Excel 2003.

My computation Columns are "E" to "J", and starts on Row 15.

Column "I" is the Total.

Column "J" is the Running Total.

With the following data:

E F G H I J

..12 2.12 .09 -3.25 -.92 -.92

..08 1.99 .03 -2.99 -.89 -1.81

..10 2.05 .07 -3.15 -.93 -2.74

((In the "J" Column when there is no)) -2.74
((amount in Columns "E" to "I",))
((through Row 42 shows the last total.)) -2.74

-2.74

-2.74


After the final total of -2.74, how can I
eliminate subsequent amounts of -2.74
from appearing in the Running Total
Column, until I get to the 42nd Row
that will show the grand total?

Thank you for your help in this matter.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,722
Default Running Total

Apologies, last formula should use AND, not OR:

=IF(AND(ISBLANK(I2),ROW()<42),"",SUM(I$2:I2))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"DisMusBeDaPlaz" wrote:

Hello Group Excel,

I am using Excel 2003.

My computation Columns are "E" to "J", and starts on Row 15.

Column "I" is the Total.

Column "J" is the Running Total.

With the following data:

E F G H I J

..12 2.12 .09 -3.25 -.92 -.92

..08 1.99 .03 -2.99 -.89 -1.81

..10 2.05 .07 -3.15 -.93 -2.74

((In the "J" Column when there is no)) -2.74
((amount in Columns "E" to "I",))
((through Row 42 shows the last total.)) -2.74

-2.74

-2.74


After the final total of -2.74, how can I
eliminate subsequent amounts of -2.74
from appearing in the Running Total
Column, until I get to the 42nd Row
that will show the grand total?

Thank you for your help in this matter.

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
90 day Running total Karen Excel Worksheet Functions 1 January 20th 10 05:29 PM
Running Total open a adobe file from a command button Excel Worksheet Functions 7 April 21st 09 02:16 PM
Duplicate Running Total Grand Total In Pivot Table Mathew P Bennett[_2_] Excel Discussion (Misc queries) 1 August 17th 08 03:13 AM
running total and average of that total after 3 events belvy123 Excel Discussion (Misc queries) 0 March 28th 07 02:57 AM
running total and average of that total after 3 events Toppers Excel Discussion (Misc queries) 1 March 28th 07 02:19 AM


All times are GMT +1. The time now is 12:50 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"