Return cell blank ifsum=0

G

Guest

I am using this formula

=SUMIF(F:G,L29,G:G)

normal answer is for instance 33456
sometime the answer is 0
When the answer is 0 I want the cell to show nothing at all

Is this possible ???

Regards

Mark
 
D

Dave Peterson

I'd use:

=if(sumif(...)=0,"",sumif(...))

Did you really mean to use F:G???
 
G

Guest

The formula works but unfortunatley the blank response is showing as blank
but I am then using dynamic charting and it still shows as 0...I need the
cell to show nothing so it see's the cell as completly blank !!!!!

Help please.
 
P

Peo Sjoblom

Use NA()

as an example instead of


=IF(A1=0,"",A1)

use

=IF(A1=0,NA(),A1)


The formula will show as #N/A but the chart will show as null and if you
don't like the look of the #N/A you can hide it with conditional formatting
using white fonts
 
G

Guest

The NA bit worked but the chart is still seeing something there...

How do I do the condition formatting ??

Regards

Mark
 

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

Top