Microsoft KB Archive/172262

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 11:05, 21 July 2020 by X010 (talk | contribs) (Text replacement - """ to """)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


Article ID: 172262

Article Last Modified on 8/17/2005



APPLIES TO

  • Microsoft Excel 97 Standard Edition
  • Microsoft Excel 95 Standard Edition
  • Microsoft Excel 5.0 Standard Edition



This article was previously published under Q172262

SYMPTOMS

In the versions of Microsoft Excel listed above, if you run a Visual Basic for Applications macro that sets the Type property of a trendline in a chart, you may receive the following error message:

This program has performed an illegal operation and will be shut down. If the problem persists, contact the program vendor.

If you click Details, you receive an error message similar to either of the following:

EXCEL caused an invalid page fault in module EXCEL.EXE at 0137:30365bcf.

-or-


EXCEL caused a general protection fault in module EXCEL.EXE at 00eb:00004464.

CAUSE

This problem occurs when the Name property of the trendline is empty (""). For example, the following line of code makes the Name property of a trendline empty:

   ActiveChart.SeriesCollection(1).Trendlines(1).Name = ""
                

WORKAROUND

To work around this problem, make sure that each trendline in the chart has a non-empty Name property before you attempt to change its Type property.

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. In Excel, you can change the Type property of a trendline with a line of code similar to the following

   ActiveChart.SeriesCollection(1).Trendlines(1).Type = <type>
                

where <type> is one of the following xlConstants:

   xlExponential   xlMovingAvg
   xlLinear        xlPolynomial
   xlLogarithmic   xlPower
                


Additional query words: XL97 XL7 XL5 ipf gpf XL

Keywords: kbbug kbprogramming kbdtacode KB172262