4

I'm plotting data in an Excel 2003 chart with a logarithmic scale on the Y axis. Some data points are occasionally missing, and this is represented by blank cells. The resulting graph looks like the one below.

There is a gap in the curves at x=150, and that is great because it really emphasizes the fact that some data is missing at that point. This is part and parcel of the information that the graph should convey.

However, Excel throws a warning every time I touch the graph: "Negative or zero values cannot be plotted correctly on log charts." This is incredibly annoying.

Is there a way to suppress this warning?

Here is what I know already:

  • Blank cells get interpreted as zero by the chart, and plotting zero values on a logarithmic chart makes no sense. This is what triggers the error.
  • If I make the missing-data cells #N/A instead of blank, the warning goes away. However, the gap in the curves also go away, which is not good.
  • Application.DisplayAlerts = False would probably work during the execution of a VBA macro, but my question is not within the context of a running macro. (Note that Application.DisplayAlerts automatically gets reset to True when execution terminates.)

enter image description here

enter image description here

3
  • Is Excel-2003 a firm requirement? I tried it in 2010, got one warning when creating the chart, after that no more warinings Commented Oct 28, 2011 at 9:17
  • Unfortunately, until my company decides to upgrade to 2010, it is a requirement! Commented Oct 28, 2011 at 10:51
  • Blank cells are not interpreted as zeros. Cells that return "" so they appear blank to us humans actually contain a string (the null string), and are interpreted as zero. Change your formula so they return NA() instead of "" for null values. They look ugly in the sheet, but Excel doesn't try to plot them, and instead interpolates a line across them. Commented Jan 11, 2016 at 22:09

1 Answer 1

2

A workaround but I would install AutoHotkey and set it to immediately dismiss that dialog when it appears: http://www.autohotkey.com/docs/commands/SetTimer.htm

; Example #1: Close unwanted windows whenever they appear:
#Persistent
SetTimer, CloseMailWarnings, 250
return

CloseMailWarnings:
WinClose, Microsoft Excel, Negative or zero values cannot be plotted
return

You'll soon think of 50 windows and dialogs you'd like to close as soon as they appear so the initial effort to install it and set it up will soon pay off.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .