Thread: Excel help
View Single Post
Old 02-20-2005, 06:24 PM   #5 (permalink)
cyrnel
Adequate
 
cyrnel's Avatar
 
Location: In my angry-dome.
This still may be too simple an answer.

Say you have a cell that's computed:

=sum(a1:b4)

Now you want it to only display computed values greater than zero:

=if(sum(a1:b4) > 0;sum(a1:b4);0)
Replace the final zero with "" to display a blank cell instead of zero.

There are other methods but that's the classic double calculation used since Visicalc.
cyrnel is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46