Skipping Text Entries

G

Gingerly

One of my charts contains "N/A" entries. Right now they are showing as zeros
on the chart. I went to OPTIONS/CHART and the chose the LEAVE GAPS choice but
they are still showing as zeros. Is there any way to skip that week if the
entry is non-numeric? Thanks.
 
L

Luke M

have your text entries return the #NA error, such as:
=IF(A2=0,NA(),A2)

The #NA error is ignored by charts.
 
D

David Biddulph

Replace your "N/A" text entries by the #N/A error code.
If you are doing it by formula you can use =NA() or =#N/A, but not ="N/A"
 
G

Gingerly

Thank you so much, Luke!

Luke M said:
have your text entries return the #NA error, such as:
=IF(A2=0,NA(),A2)

The #NA error is ignored by charts.
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 
G

Gingerly

Thank you so much, David!

David Biddulph said:
Replace your "N/A" text entries by the #N/A error code.
If you are doing it by formula you can use =NA() or =#N/A, but not ="N/A"
 

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