A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Charts and Charting
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

2003 Excel Chart with zero data



 
 
Thread Tools Display Modes
  #1  
Old November 10th, 2009, 04:30 PM posted to microsoft.public.excel.charting
C Kreig[_2_]
external usenet poster
 
Posts: 24
Default 2003 Excel Chart with zero data

I have a chart that shows the fiscal year. In the months that currently do
not have data it is charting to a zero for the month. How can I get the
chart not to show the next month's that have a zero for a value? The catch
is that some months maybe zero and the months that do not have a value are
currently empty. Below is the formula that I am currently using.

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),"",0),SUM('Global KPI Monitoring
chart'!F7:F8))
  #2  
Old November 10th, 2009, 04:40 PM posted to microsoft.public.excel.charting
Luke M
external usenet poster
 
Posts: 2,672
Default 2003 Excel Chart with zero data

Instead of an output of "", have the formula output the #N/A error (as charts
recognize this data as not applicable)

I believe something like this:

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),NA(),0),SUM('Global KPI Monitoring
chart'!F7:F8))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

I have a chart that shows the fiscal year. In the months that currently do
not have data it is charting to a zero for the month. How can I get the
chart not to show the next month's that have a zero for a value? The catch
is that some months maybe zero and the months that do not have a value are
currently empty. Below is the formula that I am currently using.

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),"",0),SUM('Global KPI Monitoring
chart'!F7:F8))

  #3  
Old November 10th, 2009, 05:12 PM posted to microsoft.public.excel.charting
C Kreig[_2_]
external usenet poster
 
Posts: 24
Default 2003 Excel Chart with zero data

Luke-
If I do that, I get ?Name error

"Luke M" wrote:

Instead of an output of "", have the formula output the #N/A error (as charts
recognize this data as not applicable)

I believe something like this:

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),NA(),0),SUM('Global KPI Monitoring
chart'!F7:F8))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

I have a chart that shows the fiscal year. In the months that currently do
not have data it is charting to a zero for the month. How can I get the
chart not to show the next month's that have a zero for a value? The catch
is that some months maybe zero and the months that do not have a value are
currently empty. Below is the formula that I am currently using.

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),"",0),SUM('Global KPI Monitoring
chart'!F7:F8))

  #4  
Old November 10th, 2009, 05:21 PM posted to microsoft.public.excel.charting
C Kreig[_2_]
external usenet poster
 
Posts: 24
Default 2003 Excel Chart with zero data

Luke-
I got the formula to work, however it is still showing a value of zero on my
chart.
Any suggestions?

"Luke M" wrote:

Instead of an output of "", have the formula output the #N/A error (as charts
recognize this data as not applicable)

I believe something like this:

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),NA(),0),SUM('Global KPI Monitoring
chart'!F7:F8))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

I have a chart that shows the fiscal year. In the months that currently do
not have data it is charting to a zero for the month. How can I get the
chart not to show the next month's that have a zero for a value? The catch
is that some months maybe zero and the months that do not have a value are
currently empty. Below is the formula that I am currently using.

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),"",0),SUM('Global KPI Monitoring
chart'!F7:F8))

  #5  
Old November 10th, 2009, 07:03 PM posted to microsoft.public.excel.charting
Luke M
external usenet poster
 
Posts: 2,672
Default 2003 Excel Chart with zero data

Hmm. You might want to take a look at dynamic charting techniques to help
limit the amount of data going into your chart.

http://peltiertech.com/Excel/Charts/Dynamics.html

It appears you are trying not only keep the data from months that have no
data from being plotted, but also keep those months from appearing on the
axis, correct?
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

Luke-
I got the formula to work, however it is still showing a value of zero on my
chart.
Any suggestions?

"Luke M" wrote:

Instead of an output of "", have the formula output the #N/A error (as charts
recognize this data as not applicable)

I believe something like this:

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),NA(),0),SUM('Global KPI Monitoring
chart'!F7:F8))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

I have a chart that shows the fiscal year. In the months that currently do
not have data it is charting to a zero for the month. How can I get the
chart not to show the next month's that have a zero for a value? The catch
is that some months maybe zero and the months that do not have a value are
currently empty. Below is the formula that I am currently using.

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),"",0),SUM('Global KPI Monitoring
chart'!F7:F8))

  #6  
Old November 11th, 2009, 03:23 AM posted to microsoft.public.excel.charting
C Kreig[_2_]
external usenet poster
 
Posts: 24
Default 2003 Excel Chart with zero data

Luke-
I am doing a chart for fy and from Nov - Aug we do not have data. Instead
of the chart leaving the point blank where the data does not exist it
considers it a zero value and is charting it as a zero.

"Luke M" wrote:

Hmm. You might want to take a look at dynamic charting techniques to help
limit the amount of data going into your chart.

http://peltiertech.com/Excel/Charts/Dynamics.html

It appears you are trying not only keep the data from months that have no
data from being plotted, but also keep those months from appearing on the
axis, correct?
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

Luke-
I got the formula to work, however it is still showing a value of zero on my
chart.
Any suggestions?

"Luke M" wrote:

Instead of an output of "", have the formula output the #N/A error (as charts
recognize this data as not applicable)

I believe something like this:

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),NA(),0),SUM('Global KPI Monitoring
chart'!F7:F8))
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"C Kreig" wrote:

I have a chart that shows the fiscal year. In the months that currently do
not have data it is charting to a zero for the month. How can I get the
chart not to show the next month's that have a zero for a value? The catch
is that some months maybe zero and the months that do not have a value are
currently empty. Below is the formula that I am currently using.

=IF(SUM('Global KPI Monitoring chart'!F7:F8)=0,IF(AND('Global KPI Monitoring
chart'!F7="",
'Global KPI Monitoring chart'!F8=""),"",0),SUM('Global KPI Monitoring
chart'!F7:F8))

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 06:45 PM.


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