View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Sloth Sloth is offline
external usenet poster
 
Posts: 252
Default is it possible to hide zero sums

You can't "hide" a cell the way you can hide a row or column, but you can
make it appear blank.

Option 1: Wrap your formula in an if statement like this...
=IF(SUM(data)=0,"",SUM(data))

Option 2: Make a custom number format that outputs nothing for zero values.
highlight the cells in question
select format-cells-number tab
under "category" click on "custom"
enter the following under "type"
General;-General;;@

"Sundew Chocobo" wrote:

in a nonpivot table, I am trying just to hide the number zero sums. (not the
row or column.)

ideas?


TIA