Blank Suppression

  • Thread starter Thread starter Mike Copeland
  • Start date Start date
M

Mike Copeland

How do I (blank) suppress a subtotal value that I have formatted as
0.00? Using #.## leaves the "." in the cell. The formula is below:
=SUMIF($E$401:$E$598, E399, $B$401:$B$598)

I want the cell to show blanks if no value is produced. Please
advise. TIA
 
Mike Copeland explained on 7/6/2011 :
How do I (blank) suppress a subtotal value that I have formatted as
0.00? Using #.## leaves the "." in the cell. The formula is below:
=SUMIF($E$401:$E$598, E399, $B$401:$B$598)

I want the cell to show blanks if no value is produced. Please
advise. TIA

=IF(SUMIF($E$401:$E$598, E399, $B$401:$B$598)>0,SUMIF($E$401:$E$598,
E399, $B$401:$B$598),"")
 
Hi Mike,

Am Wed, 6 Jul 2011 07:24:04 -0700 schrieb Mike Copeland:
How do I (blank) suppress a subtotal value that I have formatted as
0.00? Using #.## leaves the "." in the cell. The formula is below:
=SUMIF($E$401:$E$598, E399, $B$401:$B$598)

custom format:
0.00;-0.00;


Regards
Claus Busch
 
Back
Top