Blank Suppression

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
 
G

GS

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),"")
 
C

Claus Busch

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top