XL98: Visual Basic Macro to Break Chart Links

ID: Q192370

The information in this article applies to:

SUMMARY

Although charts in Microsoft Excel 98 Macintosh Edition are, by default, linked to the range of cells on the worksheets that they were created from, these links can be broken by converting the cell references in the SERIES formula for the chart to values. This article contains a sample Visual Basic for Applications macro that you can use to do this.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals 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 needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:

   http://www.microsoft.com/supportnet/refguide/ 

The following macro can be run for any active chart. For the purpose of this macro, a chart is active when any of the following are true:

Visual Basic Code Example

   Sub BreakChartLinks()

   For Each x In ActiveChart.SeriesCollection
      x.Values = x.Values
      x.XValues = x.XValues
      x.Name = x.Name
   Next x

   End Sub

Additional query words: XL98
Keywords          : kbdta kbdtacode 
Version           : MACINTOSH:98
Platform          : MACINTOSH
Issue type        : kbhowto

Last Reviewed: May 18, 1999