Removing "0"s from a chart

G

Guest

I've inheirted a chart that shows a monthly calculation and a year-to-date
figure.

For example:
Jan Feb Mar Apr May Jun Jul ETC.....
YTD
5% 4% 5% 1% 0 0 0
4%

In the example there is no data for May forward. In the source data, an If
statement is used so that if there isn't any data it posts "", ex. =If (b3>0,
b3/b6,"")

What I need, or been asked to do is to remove the "0"s from the graph. Any
ideas?
 
A

Andy Pope

Hi,

Modify your formula to use NA() for zero data.
=If(b3>0, b3/b6,NA())

You may not get the intended result with that formula. What happens when
Mays data arrives and it's zero?

Cheers
Andy
 
G

Guest

That's It

Thanks

Andy Pope said:
Hi,

Modify your formula to use NA() for zero data.
=If(b3>0, b3/b6,NA())

You may not get the intended result with that formula. What happens when
Mays data arrives and it's zero?

Cheers
Andy
 

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