Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm creating a chart from a column of numerical values. Several of the cells
in the column are blank (=" " rather than having them display an unstable value which they would be otherwise). When this set of data is transferred to an Excel chart the cells with the " " value are charted as if the cells have the value of zero. How do I exclued these entries from being included in the charts without affecting the desired data? I would like the blank values to show an empty spot in the chart rather than a value of zero. -- Ken |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ken.
Make you blanks which I assume are formula generated evaluate as NA() instead of blank and Excel won't chart them it will interpolate between adjacent values in the chart. Mike "Ken" wrote: I'm creating a chart from a column of numerical values. Several of the cells in the column are blank (=" " rather than having them display an unstable value which they would be otherwise). When this set of data is transferred to an Excel chart the cells with the " " value are charted as if the cells have the value of zero. How do I exclued these entries from being included in the charts without affecting the desired data? I would like the blank values to show an empty spot in the chart rather than a value of zero. -- Ken |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
All non numeric values in cells will be treated as text and therefore charted as zero. The exception is the use of the formula NA() which will suppress the plotting of a data marker. In a line chart the line will be joined between 2 valid data points. The only way to get a line break is to have truly empty cells. Cheers Andy Ken wrote: I'm creating a chart from a column of numerical values. Several of the cells in the column are blank (=" " rather than having them display an unstable value which they would be otherwise). When this set of data is transferred to an Excel chart the cells with the " " value are charted as if the cells have the value of zero. How do I exclued these entries from being included in the charts without affecting the desired data? I would like the blank values to show an empty spot in the chart rather than a value of zero. -- Andy Pope, Microsoft MVP - Excel http://www.andypope.info |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
Replace formulas like =IF(A3<10," ",A3) with =IF(A3<10,NA(),A3) A couple of points: 1. It is probably better technique to use "" to represent a blank cell rather than " ". In many situations " " would not be treated as a blank cell, but "" would. 2. In a column or bar chart this technique works very well, however, in a line chart if your goal was to leave a break in the line, this would not do it, because as Mike has said Excel interpolates (connects the known points as thought the missing point was on the line connecting them). 3. You should look at Jon Peltier's website for other useful charting suggestions: http://peltiertech.com/Excel/Charts/ -- Thanks, Shane Devenshire "Ken" wrote: I'm creating a chart from a column of numerical values. Several of the cells in the column are blank (=" " rather than having them display an unstable value which they would be otherwise). When this set of data is transferred to an Excel chart the cells with the " " value are charted as if the cells have the value of zero. How do I exclued these entries from being included in the charts without affecting the desired data? I would like the blank values to show an empty spot in the chart rather than a value of zero. -- Ken |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This idea works good, however, if you are doing any calculations in your
spreadsheet such as finding the average, you get an error. Is there anyway to have the best of both worlds. "ShaneDevenshire" wrote: Hi, Replace formulas like =IF(A3<10," ",A3) with =IF(A3<10,NA(),A3) A couple of points: 1. It is probably better technique to use "" to represent a blank cell rather than " ". In many situations " " would not be treated as a blank cell, but "" would. 2. In a column or bar chart this technique works very well, however, in a line chart if your goal was to leave a break in the line, this would not do it, because as Mike has said Excel interpolates (connects the known points as thought the missing point was on the line connecting them). 3. You should look at Jon Peltier's website for other useful charting suggestions: http://peltiertech.com/Excel/Charts/ -- Thanks, Shane Devenshire "Ken" wrote: I'm creating a chart from a column of numerical values. Several of the cells in the column are blank (=" " rather than having them display an unstable value which they would be otherwise). When this set of data is transferred to an Excel chart the cells with the " " value are charted as if the cells have the value of zero. How do I exclued these entries from being included in the charts without affecting the desired data? I would like the blank values to show an empty spot in the chart rather than a value of zero. -- Ken |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Charts and time values | Charts and Charting in Excel | |||
Excel Charts axis min, max values | Charts and Charting in Excel | |||
Not showing blank and non blank items in filter mode for values | Excel Worksheet Functions | |||
Excel Charts X Axis values as dd/mm/yy hh:mm | Charts and Charting in Excel | |||
zero values in charts-don't want to show as zero, but as blank | Excel Discussion (Misc queries) |