Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Logarithmic Scale - Suppress Error Messages when Negative/Zero Values 1

Status
Not open for further replies.

jmgibson

Technical User
Oct 1, 2002
81
0
0
US
I'm graphing data using a Logarithmic scale. I do have negative values, and I realize these aren't allows, and I'm okay with the fact that Excel just skips over them. But, I get prompted with an error message that tells me that negative/zero values aren't allowed. Is there anyway to suppress these error messages from appearing?
 



Hi,

In the same manner that you were instructed to create a source data column for a second series for negative numbers as postitive values, create a similar one for only positive numbers, and DELETE the existing series that contains negative numbers.

ie, each source range should contain ONLY positive numbers.

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a brand NUANCE![tongue][/sub]
 
you don't need to delete anything manually. A new column
=if(A1>0, A1, "")
will do it for you
 




"you don't need to delete anything manually."

He must manually DELETE the existing SERIES in the CHART or change the reference in the chart.

And your formula is exactly what I was referring him to in a previous post.

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a brand NUANCE![tongue][/sub]
 




Thumtimeth I feel thick ath well regarding variouth athpecth of my exthithtance.

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a brand NUANCE![tongue][/sub]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top