Auto Scale X axis doesn't work with "" values in cell

G

Guest

First of all, thanks to tushar:
http://www.tushar-mehta.com/excel/newsgroups/dynamic_charts/index.html

I'm trying to get a chart to work with the basic ranges defined as this:

XValues =OFFSET('Basic Range'!YValues,0,-1)
YValues =OFFSET('Basic Range'!$B$5,0,0,COUNTA('Basic Range'!$B:$B)-1,1)

Assuming dates in A5-A16 and data in B5-B16.

However, this won't work if the data in column B is equal to this ""

I get the "" from an if statement: If cell in column A is blank, then cell
in column B = "" or =IF(isblank(A11),"",get stock price data as of the date
in cell All)

Any suggestions to work around the "" issue?

thanks very much.

SteveC
 
J

Jon Peltier

"" is interpreted as a piece of text, with a value of zero. Replace "" with
NA(). This leaves an ugly #N/A error in the cell, but is ignored by line and
XY charts. Hide the cell error with conditional formatting.

- Jon
 
G

Guest

thanks John... was about to write that I found your explanation of this in
another post...
 

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