Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
Tom H
 
Posts: n/a
Default Stop chart lines going to zero

Chart lines drop to zero on last point unless cell is highlighted and delete
key pressed, which is no good if there is a formulae in the cell. Anybody
know how to cure this ??

  #2   Report Post  
Posted to microsoft.public.excel.charting
Tushar Mehta
 
Posts: n/a
Default Stop chart lines going to zero

In article , ?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted and delete
key pressed, which is no good if there is a formulae in the cell. Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions
  #3   Report Post  
Posted to microsoft.public.excel.charting
Tom H
 
Posts: n/a
Default Stop chart lines going to zero

Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article , ?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted and delete
key pressed, which is no good if there is a formulae in the cell. Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions

  #4   Report Post  
Posted to microsoft.public.excel.charting
Jon Peltier
 
Posts: n/a
Default Stop chart lines going to zero

Good guess, though, considering there was no formula in the original post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions



  #5   Report Post  
Posted to microsoft.public.excel.charting
Tom H
 
Posts: n/a
Default Stop chart lines going to zero

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions






  #6   Report Post  
Posted to microsoft.public.excel.charting
JC
 
Posts: n/a
Default Stop chart lines going to zero

Tom,

I had this same problem when I tested the suggested change in a formula I was
using. The problem was I only changed one cell as a test and the chart line
still dropped to zero due to the subsequent cells having "" instead of NA().

You have to apply this formula to all cells in the column otherwise the first
cell with "" instead of NA() will cause the chart line to drop to zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions




  #7   Report Post  
Posted to microsoft.public.excel.charting
Jon Peltier
 
Posts: n/a
Default Stop chart lines going to zero

Another point: the NA() only prevents Line chart and XY chart points from
displaying. Other chart types will display a zero value for NA(). For a
column or bar chart it usually doesn't matter, since a zero value usually
just doesn't show because it's the minimum height of the axis (although
you'll get a #N/A data label if you are showing values). But an area chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a formula I
was
using. The problem was I only changed one cell as a test and the chart
line
still dropped to zero due to the subsequent cells having "" instead of
NA().

You have to apply this formula to all cells in the column otherwise the
first
cell with "" instead of NA() will cause the chart line to drop to zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H
wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted
and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions






  #8   Report Post  
Posted to microsoft.public.excel.charting
Tom H
 
Posts: n/a
Default Stop chart lines going to zero

Unfortunately this still doesn't work, even with formulae applied to all
cells, perhaps there is a way with conditional formating to switch the line
chart off ?

"Jon Peltier" wrote:

Another point: the NA() only prevents Line chart and XY chart points from
displaying. Other chart types will display a zero value for NA(). For a
column or bar chart it usually doesn't matter, since a zero value usually
just doesn't show because it's the minimum height of the axis (although
you'll get a #N/A data label if you are showing values). But an area chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a formula I
was
using. The problem was I only changed one cell as a test and the chart
line
still dropped to zero due to the subsequent cells having "" instead of
NA().

You have to apply this formula to all cells in the column otherwise the
first
cell with "" instead of NA() will cause the chart line to drop to zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H
wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted
and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions







  #9   Report Post  
Posted to microsoft.public.excel.charting
Jon Peltier
 
Posts: n/a
Default Stop chart lines going to zero

Okay, I suspect something wasn't adequately communicated. What's the data
look like? What range is it in? What does the series formula look like. What
does the formula in the worksheet look like? What cells is it in? What do
the results of the formula look like.

If you can't get this to work, you won't be able to get any conditional
formatting to work in the chart either, because conditional formatting in a
chart is based on similar formulas incorporating NA().

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Tom H" wrote in message
...
Unfortunately this still doesn't work, even with formulae applied to all
cells, perhaps there is a way with conditional formating to switch the
line
chart off ?

"Jon Peltier" wrote:

Another point: the NA() only prevents Line chart and XY chart points from
displaying. Other chart types will display a zero value for NA(). For a
column or bar chart it usually doesn't matter, since a zero value usually
just doesn't show because it's the minimum height of the axis (although
you'll get a #N/A data label if you are showing values). But an area
chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a formula
I
was
using. The problem was I only changed one cell as a test and the chart
line
still dropped to zero due to the subsequent cells having "" instead of
NA().

You have to apply this formula to all cells in the column otherwise the
first
cell with "" instead of NA() will cause the chart line to drop to zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H

wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted
and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions









  #10   Report Post  
Posted to microsoft.public.excel.charting
Tom H
 
Posts: n/a
Default Stop chart lines going to zero

Jon,

Went back through all the formulaes upsteam of the empty cells and found one
that still had the old formulae in - Now works fine on the graph, but #N/A
shows in the data cells that don't have a result in. Is there a way to stop
the #N/A from showing, as this is also interfering with other formulaes -
Thanks.

"Jon Peltier" wrote:

Okay, I suspect something wasn't adequately communicated. What's the data
look like? What range is it in? What does the series formula look like. What
does the formula in the worksheet look like? What cells is it in? What do
the results of the formula look like.

If you can't get this to work, you won't be able to get any conditional
formatting to work in the chart either, because conditional formatting in a
chart is based on similar formulas incorporating NA().

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Tom H" wrote in message
...
Unfortunately this still doesn't work, even with formulae applied to all
cells, perhaps there is a way with conditional formating to switch the
line
chart off ?

"Jon Peltier" wrote:

Another point: the NA() only prevents Line chart and XY chart points from
displaying. Other chart types will display a zero value for NA(). For a
column or bar chart it usually doesn't matter, since a zero value usually
just doesn't show because it's the minimum height of the axis (although
you'll get a #N/A data label if you are showing values). But an area
chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a formula
I
was
using. The problem was I only changed one cell as a test and the chart
line
still dropped to zero due to the subsequent cells having "" instead of
NA().

You have to apply this formula to all cells in the column otherwise the
first
cell with "" instead of NA() will cause the chart line to drop to zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H

wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted
and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions












  #11   Report Post  
Posted to microsoft.public.excel.charting
JC
 
Posts: n/a
Default Stop chart lines going to zero

Tom,

You could try a trick I used. I set up 'helper' columns off screen purely for
graphing purposes. The columns on screen had formulas similar to
=IF(H110="","",SUM(K110/H110))
while those off screen, used only for graphing, were similar to
=IF(H110="",NA(),SUM(K110/H110))

If you do this the graphing will work fine and there should be no interference
with other formulas as they will use the on screen cells for their inputs.

JC


On Sat, 4 Mar 2006 16:54:27 -0800, Tom H wrote:

Jon,

Went back through all the formulaes upsteam of the empty cells and found one
that still had the old formulae in - Now works fine on the graph, but #N/A
shows in the data cells that don't have a result in. Is there a way to stop
the #N/A from showing, as this is also interfering with other formulaes -
Thanks.

"Jon Peltier" wrote:

Okay, I suspect something wasn't adequately communicated. What's the data
look like? What range is it in? What does the series formula look like. What
does the formula in the worksheet look like? What cells is it in? What do
the results of the formula look like.

If you can't get this to work, you won't be able to get any conditional
formatting to work in the chart either, because conditional formatting in a
chart is based on similar formulas incorporating NA().

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Tom H" wrote in message
...
Unfortunately this still doesn't work, even with formulae applied to all
cells, perhaps there is a way with conditional formating to switch the
line
chart off ?

"Jon Peltier" wrote:

Another point: the NA() only prevents Line chart and XY chart points from
displaying. Other chart types will display a zero value for NA(). For a
column or bar chart it usually doesn't matter, since a zero value usually
just doesn't show because it's the minimum height of the axis (although
you'll get a #N/A data label if you are showing values). But an area
chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a formula
I
was
using. The problem was I only changed one cell as a test and the chart
line
still dropped to zero due to the subsequent cells having "" instead of
NA().

You have to apply this formula to all cells in the column otherwise the
first
cell with "" instead of NA() will cause the chart line to drop to zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H

wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article ,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is highlighted
and
delete
key pressed, which is no good if there is a formulae in the cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions










  #12   Report Post  
Posted to microsoft.public.excel.charting
Jon Peltier
 
Posts: n/a
Default Stop chart lines going to zero

Helper columns is one decent way to do this, or even a whole separate range.
Another way, if the data is simple enough and you don't need the range for
subsequent calculations is to use conditional formatting to hide the error
values.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______


"JC" wrote in message
...
Tom,

You could try a trick I used. I set up 'helper' columns off screen
purely for
graphing purposes. The columns on screen had formulas similar to
=IF(H110="","",SUM(K110/H110))
while those off screen, used only for graphing, were similar to
=IF(H110="",NA(),SUM(K110/H110))

If you do this the graphing will work fine and there should be no
interference
with other formulas as they will use the on screen cells for their inputs.

JC


On Sat, 4 Mar 2006 16:54:27 -0800, Tom H
wrote:

Jon,

Went back through all the formulaes upsteam of the empty cells and found
one
that still had the old formulae in - Now works fine on the graph, but #N/A
shows in the data cells that don't have a result in. Is there a way to
stop
the #N/A from showing, as this is also interfering with other formulaes -
Thanks.

"Jon Peltier" wrote:

Okay, I suspect something wasn't adequately communicated. What's the
data
look like? What range is it in? What does the series formula look like.
What
does the formula in the worksheet look like? What cells is it in? What
do
the results of the formula look like.

If you can't get this to work, you won't be able to get any conditional
formatting to work in the chart either, because conditional formatting
in a
chart is based on similar formulas incorporating NA().

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Tom H" wrote in message
...
Unfortunately this still doesn't work, even with formulae applied to
all
cells, perhaps there is a way with conditional formating to switch the
line
chart off ?

"Jon Peltier" wrote:

Another point: the NA() only prevents Line chart and XY chart points
from
displaying. Other chart types will display a zero value for NA(). For
a
column or bar chart it usually doesn't matter, since a zero value
usually
just doesn't show because it's the minimum height of the axis
(although
you'll get a #N/A data label if you are showing values). But an area
chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a
formula
I
was
using. The problem was I only changed one cell as a test and the
chart
line
still dropped to zero due to the subsequent cells having "" instead
of
NA().

You have to apply this formula to all cells in the column otherwise
the
first
cell with "" instead of NA() will cause the chart line to drop to
zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H

wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the
original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the
problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article
,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is
highlighted
and
delete
key pressed, which is no good if there is a formulae in the
cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions












  #13   Report Post  
Posted to microsoft.public.excel.charting
Tom H
 
Posts: n/a
Default Stop chart lines going to zero

Jon,

Have tried conditional formatting but doesn't appear to solve this problem,
so I will probably use the helper columns.

Thanks to everyone for their support and help in this matter.
Good forum for exchange of views and problem solving.

"Jon Peltier" wrote:

Helper columns is one decent way to do this, or even a whole separate range.
Another way, if the data is simple enough and you don't need the range for
subsequent calculations is to use conditional formatting to hide the error
values.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______


"JC" wrote in message
...
Tom,

You could try a trick I used. I set up 'helper' columns off screen
purely for
graphing purposes. The columns on screen had formulas similar to
=IF(H110="","",SUM(K110/H110))
while those off screen, used only for graphing, were similar to
=IF(H110="",NA(),SUM(K110/H110))

If you do this the graphing will work fine and there should be no
interference
with other formulas as they will use the on screen cells for their inputs.

JC


On Sat, 4 Mar 2006 16:54:27 -0800, Tom H
wrote:

Jon,

Went back through all the formulaes upsteam of the empty cells and found
one
that still had the old formulae in - Now works fine on the graph, but #N/A
shows in the data cells that don't have a result in. Is there a way to
stop
the #N/A from showing, as this is also interfering with other formulaes -
Thanks.

"Jon Peltier" wrote:

Okay, I suspect something wasn't adequately communicated. What's the
data
look like? What range is it in? What does the series formula look like.
What
does the formula in the worksheet look like? What cells is it in? What
do
the results of the formula look like.

If you can't get this to work, you won't be able to get any conditional
formatting to work in the chart either, because conditional formatting
in a
chart is based on similar formulas incorporating NA().

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"Tom H" wrote in message
...
Unfortunately this still doesn't work, even with formulae applied to
all
cells, perhaps there is a way with conditional formating to switch the
line
chart off ?

"Jon Peltier" wrote:

Another point: the NA() only prevents Line chart and XY chart points
from
displaying. Other chart types will display a zero value for NA(). For
a
column or bar chart it usually doesn't matter, since a zero value
usually
just doesn't show because it's the minimum height of the axis
(although
you'll get a #N/A data label if you are showing values). But an area
chart
will display this drop from the last nonzero point to zero.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______

"JC" wrote in message
...
Tom,

I had this same problem when I tested the suggested change in a
formula
I
was
using. The problem was I only changed one cell as a test and the
chart
line
still dropped to zero due to the subsequent cells having "" instead
of
NA().

You have to apply this formula to all cells in the column otherwise
the
first
cell with "" instead of NA() will cause the chart line to drop to
zero.

JC

On Fri, 3 Mar 2006 18:55:27 -0800, Tom H

wrote:

Jon, Have tried this again and still doesn't work.

Regards Tom H

"Jon Peltier" wrote:

Good guess, though, considering there was no formula in the
original
post.
Try this:

=IF(H110="",NA(),SUM(K110/H110))

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services - Tutorials and Custom Solutions -
http://PeltierTech.com/
2006 Excel User Conference, 19-21 April, Atlantic City, NJ
http://peltiertech.com/Excel/ExcelUserConf06.html
_______

"Tom H" wrote in message
...
Thanks for the quick reply Tushar, but this didn't fix the
problem.
The formulae I am using is:- =IF(H110="","",SUM(K110/H110))

Regards Tom H


"Tushar Mehta" wrote:

In article
,
?B?
VG9tIEg=?= <Tom says...
Chart lines drop to zero on last point unless cell is
highlighted
and
delete
key pressed, which is no good if there is a formulae in the
cell.
Anybody
know how to cure this ??


Replace the "" in the formula with NA()

--
Regards,

Tushar Mehta
www.tushar-mehta.com
Excel, PowerPoint, and VBA add-ins, tutorials
Custom MS Office productivity solutions













Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using drop lines with XY scatter chart SMACS03 Charts and Charting in Excel 1 February 8th 06 03:47 AM
Creating X & Y Mean Lines on Bubble Chart Chris Turnbull Charts and Charting in Excel 1 January 17th 06 08:02 PM
How to create chart with columns and 2 lines? Robert Charts and Charting in Excel 1 January 5th 06 04:10 PM
Grid Lines on an Area Chart Phil Hageman Charts and Charting in Excel 1 September 21st 05 11:53 PM
On a combination chart how do i get 2 lines and 1 column? Richie Charts and Charting in Excel 1 December 22nd 04 12:27 PM


All times are GMT +1. The time now is 07:32 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"