Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
I don't want to display zeros in my line chart. The cells are not empty -
they contain a formula. I have used a simple if statement to hide a zero value - however the chart is still showing the datapoint as zero. |
#2
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
What does your IF statement produce? If it gives an empty string "", then
it will be treated as zero. Change the "" to NA(). If you want to hide the NA() values in the worksheet, you can do that by conditional formatting. -- David Biddulph "jhall@ifox" wrote in message ... I don't want to display zeros in my line chart. The cells are not empty - they contain a formula. I have used a simple if statement to hide a zero value - however the chart is still showing the datapoint as zero. |
#3
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
I have an IF statement
=IF('Resource Availability New'!D10<"", 'Resource Availability New'!D10, 0)/'L:\Project Control\Actuals\[Monthly Hours.xls]Sheet1'!N$2 but I don't want it to plot the 0 values but the result returned from the statement is used further down the sheet in a sum formula to which I need to see the result instead of NA how can I do that? Beverly "David Biddulph" wrote: What does your IF statement produce? If it gives an empty string "", then it will be treated as zero. Change the "" to NA(). If you want to hide the NA() values in the worksheet, you can do that by conditional formatting. -- David Biddulph "jhall@ifox" wrote in message ... I don't want to display zeros in my line chart. The cells are not empty - they contain a formula. I have used a simple if statement to hide a zero value - however the chart is still showing the datapoint as zero. |
#4
![]()
Posted to microsoft.public.excel.charting
|
|||
|
|||
![]()
Set up two ranges in the worksheet. We're well past the age of COBOL, where
we scrounged for every byte of file size. One range keeps zeros for subsequent processing, and the other uses NA() for charting. Since both ranges are linked to the original source, they should stay synchronized. - Jon ------- Jon Peltier, Peltier Technical Services, Inc. http://PeltierTech.com/WordPress/ Don't miss it! Only two weeks away! Advanced Excel Conference - June 17-18 2009 - Charting and Programming http://peltiertech.com/Training/2009...00906ACNJ.html _______ "Beverly Darvill" wrote in message ... I have an IF statement =IF('Resource Availability New'!D10<"", 'Resource Availability New'!D10, 0)/'L:\Project Control\Actuals\[Monthly Hours.xls]Sheet1'!N$2 but I don't want it to plot the 0 values but the result returned from the statement is used further down the sheet in a sum formula to which I need to see the result instead of NA how can I do that? Beverly "David Biddulph" wrote: What does your IF statement produce? If it gives an empty string "", then it will be treated as zero. Change the "" to NA(). If you want to hide the NA() values in the worksheet, you can do that by conditional formatting. -- David Biddulph "jhall@ifox" wrote in message ... I don't want to display zeros in my line chart. The cells are not empty - they contain a formula. I have used a simple if statement to hide a zero value - however the chart is still showing the datapoint as zero. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula returns empty; chart plots zero; I want to skip | Charts and Charting in Excel | |||
Defauls Values In Empty Cells | New Users to Excel | |||
How to select cells with values only (not empty ones)? | Excel Discussion (Misc queries) | |||
How to select cells with values only (not empty ones)? | Excel Discussion (Misc queries) | |||
Copying values but skipping empty cells | Excel Worksheet Functions |