Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Can I hide my running totals when there is no change?

In Excel (Office 2003) can I hide the running totals when there is no change
to the total? I want it to show only when there is a change.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 43
Default Can I hide my running totals when there is no change?

cprince,
I tested my solution in cells B29:C45. The results and the formula view are
pasted below. Use an IF function, test the data cell to be added, the only
way there will be no change is if that cell is zero, right? So you tell the
running total formula to print nothing (use empty quotes, "") if the adjacent
cell is equal to zero, and to print the normal running total if the cell
contains a value other than zero.
Please let us know if this answers your question. Thanks.

Data view: (formula view directly below)

B C
29 5 5
30 6 11
31 12 23
32 33 56
33 5 61
34 6 67
35 212 279
36 33 312
37 66 378
38 66 444
39 66 510
40 23 533
41 0
42 0
43 5 538
44 6 544
45 0

Formula view:
B C
29 5 =IF(B29=0,"",SUM($B$29:B29))
30 6 =IF(B30=0,"",SUM($B$29:B30))
31 12 =IF(B31=0,"",SUM($B$29:B31))
32 33 =IF(B32=0,"",SUM($B$29:B32))
33 5 =IF(B33=0,"",SUM($B$29:B33))
34 6 =IF(B34=0,"",SUM($B$29:B34))
35 212 =IF(B35=0,"",SUM($B$29:B35))
36 33 =IF(B36=0,"",SUM($B$29:B36))
37 66 =IF(B37=0,"",SUM($B$29:B37))
38 66 =IF(B38=0,"",SUM($B$29:B38))
39 66 =IF(B39=0,"",SUM($B$29:B39))
40 23 =IF(B40=0,"",SUM($B$29:B40))
41 0 =IF(B41=0,"",SUM($B$29:B41))
42 0 =IF(B42=0,"",SUM($B$29:B42))
43 5 =IF(B43=0,"",SUM($B$29:B43))
44 6 =IF(B44=0,"",SUM($B$29:B44))
45 0 =IF(B45=0,"",SUM($B$29:B45))


"cprince" wrote:

In Excel (Office 2003) can I hide the running totals when there is no change
to the total? I want it to show only when there is a change.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,979
Default Can I hide my running totals when there is no change?

You can use conditional formatting to hide the duplicates, as described
he

http://www.contextures.com/xlCondFor...html#Duplicate

cprince wrote:
In Excel (Office 2003) can I hide the running totals when there is no change
to the total? I want it to show only when there is a change.



--
Debra Dalgleish
Contextures
http://www.contextures.com/tiptech.html

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
How to hide running total in successive cells in a column JenniferAnderson Excel Worksheet Functions 3 August 10th 06 10:16 PM
Summary of Multiple Worksheet Running Sum Totals karstens Excel Worksheet Functions 4 March 22nd 06 03:37 PM
Change Pivot table text for totals & col headers? Sue Excel Worksheet Functions 0 February 15th 06 04:16 PM
Printing running totals automatically xe3l Excel Discussion (Misc queries) 2 January 24th 06 09:30 AM
RUNNING TOTALS eddie belfast Excel Discussion (Misc queries) 1 December 2nd 04 03:16 PM


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