Chart not to pull Zero's

C

C Kreig

I am working on an Excel Chart that has future months showing with a Zero
dollar value and it is charting the future months on my chart. Is there a
way to get it so that the Zero's will not show up? I have a formula that is
pulling the amount from another chart.
Thank you for your help.
 
J

Jon Peltier

Change "" to NA() in your formula. This puts #N/A into the cells, which is
unattractive in the worksheet, but which is not plotted on a line or XY
chart.

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

- Jon
 
C

C Kreig

John-
Currently this is my formula =SUM('KPI Monitoring chart'!H7:H8), so I am not
exactly sure how to add this to my formula. Sorry.
Thanks again for your help.
 
J

Jon Peltier

=IF(SUM('KPI Monitoring chart'!H7:H8)=0,NA(),SUM('KPI Monitoring
chart'!H7:H8))

- Jon
 
C

C Kreig

Jon-
=IF(SUM('KPI Monitoring chart'!H7:H8)=0,NA( ),SUM('KPI Monitoring
chart'!H7:H8))
There is the formula that I put in, however it did change the data to #N/A,
however is still putting a tick on my chart at Zero.
 

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