Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 39
Default How do I ignore Graphs zero values.

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 25
Default How do I ignore Graphs zero values.

select the chart.
goto tools options and check plot empty cells as any of the three chices
given there.


"fishy" wrote in message
...
I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.



  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 2,489
Default How do I ignore Graphs zero values.

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.





--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info
  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 39
Default How do I ignore Graphs zero values.

Working thanks - as you said, already tried the first suggestion but as it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.





--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info

  #5   Report Post  
Posted to microsoft.public.excel.charting
AR AR is offline
external usenet poster
 
Posts: 13
Default How do I ignore Graphs zero values.

I have tried doing a conditional format on the #N/A but it does not seem to
work. What do you need to specifically put in the conditional format. I have
tried #N/A, NA(), N/A ?

"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but as it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.




--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info



  #6   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default How do I ignore Graphs zero values.

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)

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


"AR" wrote in message
...
I have tried doing a conditional format on the #N/A but it does not seem to
work. What do you need to specifically put in the conditional format. I
have
tried #N/A, NA(), N/A ?

"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but as
it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced
with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three
chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.




--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info



  #7   Report Post  
Posted to microsoft.public.excel.charting
AR AR is offline
external usenet poster
 
Posts: 13
Default How do I ignore Graphs zero values.

Jon

I have done this but in an earlier discussion Andy suggested after doing the
formula you: " Use conditional formating to hide the #N/A". THis is the part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.


"Jon Peltier" wrote:

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)

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


"AR" wrote in message
...
I have tried doing a conditional format on the #N/A but it does not seem to
work. What do you need to specifically put in the conditional format. I
have
tried #N/A, NA(), N/A ?

"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but as
it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced
with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three
chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.




--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info




  #8   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 620
Default How do I ignore Graphs zero values.

I suggest you read Jon's answer again. He's told you exactly how to do it.
--
David Biddulph

"AR" wrote in message
...
Jon

I have done this but in an earlier discussion Andy suggested after doing
the
formula you: " Use conditional formating to hide the #N/A". THis is the
part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.


"Jon Peltier" wrote:

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)


"AR" wrote in message
...
I have tried doing a conditional format on the #N/A but it does not seem
to
work. What do you need to specifically put in the conditional format. I
have
tried #N/A, NA(), N/A ?


"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but
as
it
was a formulae, it still showed.


"Andy Pope" wrote:
Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced
with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

....


  #9   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default How do I ignore Graphs zero values.

Here's Debra Dalgleish's explanation:

http://contextures.com/xlCondFormat03.html#Errors

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


"AR" wrote in message
...
Jon

I have done this but in an earlier discussion Andy suggested after doing
the
formula you: " Use conditional formating to hide the #N/A". THis is the
part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.


"Jon Peltier" wrote:

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)

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


"AR" wrote in message
...
I have tried doing a conditional format on the #N/A but it does not seem
to
work. What do you need to specifically put in the conditional format. I
have
tried #N/A, NA(), N/A ?

"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but
as
it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced
with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three
chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.




--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info






  #10   Report Post  
Posted to microsoft.public.excel.charting
AR AR is offline
external usenet poster
 
Posts: 13
Default How do I ignore Graphs zero values.

Thanks Jon for the How To Conditional Format. I wasn't using Formula Is I was
using Cell Is

"Jon Peltier" wrote:

Here's Debra Dalgleish's explanation:

http://contextures.com/xlCondFormat03.html#Errors

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


"AR" wrote in message
...
Jon

I have done this but in an earlier discussion Andy suggested after doing
the
formula you: " Use conditional formating to hide the #N/A". THis is the
part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.


"Jon Peltier" wrote:

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)

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


"AR" wrote in message
...
I have tried doing a conditional format on the #N/A but it does not seem
to
work. What do you need to specifically put in the conditional format. I
have
tried #N/A, NA(), N/A ?

"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but
as
it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced
with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three
chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.




--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info









  #11   Report Post  
Posted to microsoft.public.excel.charting
MCC MCC is offline
external usenet poster
 
Posts: 10
Default How do I ignore Graphs zero values.

Really important because it is NOT obvious through the prior instructions in
this change: you have to set the conditional formatting for a single cell as
decribed and then copy the format with the paintbrush to all the other cells.
You can NOT select a range of cells and set the formula based conditional
formatting for them all at the same time.

"AR" wrote:

Thanks Jon for the How To Conditional Format. I wasn't using Formula Is I was
using Cell Is

"Jon Peltier" wrote:

Here's Debra Dalgleish's explanation:

http://contextures.com/xlCondFormat03.html#Errors

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


"AR" wrote in message
...
Jon

I have done this but in an earlier discussion Andy suggested after doing
the
formula you: " Use conditional formating to hide the #N/A". THis is the
part
I cannot get to work. Whatever version of N/A I use I cannot fomat it.


"Jon Peltier" wrote:

Use the Is Formula option, and this formula, where the active cell is A1

=ISNA(A1)

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


"AR" wrote in message
...
I have tried doing a conditional format on the #N/A but it does not seem
to
work. What do you need to specifically put in the conditional format. I
have
tried #N/A, NA(), N/A ?

"fishy" wrote:

Working thanks - as you said, already tried the first suggestion but
as
it
was a formulae, it still showed.

"Andy Pope" wrote:

Hi,

That will not work is the cells actually contain zero because by
definition containing zero is NOT empty.

The zeros will either need to be removed from the cells or replaced
with
NA().

=IF(SUM(myrange)=0,NA(),SUM(myrange))

Use conditional formating to hide the #N/A

Cheers
Andy

R..VENKATARAMAN wrote:
select the chart.
goto tools options and check plot empty cells as any of the three
chices
given there.


"fishy" wrote in message
...

I have a variety of tables in excel that sum approx 20 sheets but
occasionally these have a zero value.

The graphs link off these tables and show drops to zero on these
occurences.
How do I get the graph to ignore the zero values.

The source table formula is too long to put an if arguement in.




--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info







  #12   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 1
Default How do I ignore Graphs zero values.

Sorry for rehashing a really old topic, but I've got that conditional formatting set on the ranges of cells I'm graphing, but the graphs still show the empty categories:

Screenshot of data tables: https://www.dropbox.com/s/ckt2tx7j6zg2i5n/data.JPG?dl=0
Screenshot of graphs: https://www.dropbox.com/s/gctgh55yhp...raphs.JPG?dl=0

Is there any way to make those automatically not show if their value is 0?

-Sarah M
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
Function: Ignore Mimimum and Maximum Values Michael J Excel Worksheet Functions 4 March 6th 06 08:41 PM
how do i sum up a column of time values but ignore negative values Croll New Users to Excel 1 October 11th 05 05:55 PM
How can I break values apart that are in the same cell? Phil Excel Worksheet Functions 3 October 4th 05 03:41 PM
ignore missing values while ploting graph Excel plot Excel Discussion (Misc queries) 2 September 15th 05 06:48 PM
Removing 0 or none 0 values from graphs Mike Punko Charts and Charting in Excel 2 September 9th 05 10:14 PM


All times are GMT +1. The time now is 03:14 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"