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 a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:
Microsoft Certified Partners -
https://partner.microsoft.com/global/30000104Microsoft Advisory Services -
http://support.microsoft.com/gp/advisoryserviceFor more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS
To create and use a Visual Basic macro to break the links from the active chart to the spreadsheet cells from which it was created, follow these steps:
NOTE: For the purpose of this macro, a chart is active when it is embedded into the active worksheet and the chart is selected by clicking it; or if it is on a separate chart sheet, the chart sheet is the active sheet.
- Start Excel, and then type the following data into the spreadsheet:
A1: 1 B1: 2 C1: 3
- Select cells A1:C1.
- Click Chart Wizard on the standard toolbar.
- Accept the defaults, and then click Finish.
- Change the value in cell A1 to 2, and then press ENTER.
Note the change in the chart; the chart is linked to the cell. - Press ALT+F11 to start the Visual Basic Editor.
- On the Insert menu, click Module.
- In the module sheet, type the following code:
Sub BreakChartLinks()
For Each x In ActiveChart.SeriesCollection
x.Values = x.Values
x.XValues = x.XValues
x.Name = x.Name
Next x
End Sub
- Press ALT+F11 to return to Excel.
- Click the chart to select it.
- On the Tools menu, point to Macro, and then click Macros.
- In the Macro name list, click BreakChartLinks, and then click Run.
- Change the value in cell A1 to 1, and then press ENTER.
The chart does not change; the link is broken.