XL2000: Macro to Extract Data from a Chart
ID: Q213814
|
The information in this article applies to:
SUMMARY
In Microsoft Excel, you can retrieve data from a chart even when the data
is in an external worksheet or workbook. This is useful in situations where
the chart was created from, or linked to, another file that is unavailable
or has been damaged in some way. When the source data to a chart is lost,
the data can still be retrieved from the chart itself using a Microsoft
Visual Basic for Applications macro.
MORE INFORMATIONMicrosoft 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 Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the
following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.asp
The following sample macro will place the chart's source data in a
worksheet called "ChartData" in the active workbook beginning in the first column and first row.
- Enter the following macro code in a module sheet:
Sub GetChartVaules()
Dim NumberOfRows As Integer
Dim X As Object
Counter = 2
' Calculate the number of rows of data.
NumberOfRows = UBound(ActiveChart.SeriesCollection(1).Values)
Worksheets("ChartData").Cells(1, 1) = "X Values"
' Write x-axis values to worksheet.
With Worksheets("ChartData")
.Range(.Cells(2, 1), _
.Cells(NumberOfRows + 1, 1)) = _
Application.Transpose(ActiveChart.SeriesCollection(1).XValues)
End With
' Loop through all series in the chart and write their values to
' the worksheet.
For Each X In ActiveChart.SeriesCollection
Worksheets("ChartData").Cells(1, Counter) = X.Name
With Worksheets("ChartData")
.Range(.Cells(2, Counter), _
.Cells(NumberOfRows + 1, Counter)) = _
Application.Transpose(X.Values)
End With
Counter = Counter + 1
Next
End Sub
- Insert a new worksheet into your workbook and rename it to "ChartData" (without the quotation marks).
- Select the chart from which you want to extract the underlying data
values.
NOTE: The chart can either be embedded on a worksheet or on a separate chart sheet.
- Run the GetChartVaules macro.
The data from the chart will be placed in the "ChartData" worksheet.
Steps to Link the Chart to the Recovered Data
To have the chart be interactive with the recovered data, you need to link the chart to the new data sheet rather than retain the links to the missing or damaged workbook.
- Select the chart, and click a series to find the sheet name to which the chart is linked in the damaged or missing workbook. The sheet name appears in the series formula in the formula bar.
NOTE: The sheet name may follow the workbook name, which is enclosed in square brackets such as "[Book1]," and precede the exclamation point "!" (or apostrophe and exclamation point "'!") that indicates the beginning of a cell reference. The sheet name includes only the characters between the closed square bracket symbol "]" and the exclamation point (or apostrophe and exclamation point). Leave out any apostrophe if it is immediately before the exclamation mark, because an apostrophe can not be the last character in a sheet name.
- Double-click the tab of the new sheet called "ChartData".
- Type the original sheet name from step 1 over the highlighted "ChartData" and press ENTER. This name must be the same as the sheet name from the damaged or missing workbook.
- If you have not saved this file with the chart and data sheet, save the file.
- On the Edit menu, click Links, and then click Change Source.
- In the Source File box, select the link to change, and then click
Change Source.
- In the Change Links dialog box, select the new file with the recovered data and chart, and then click OK.
- If you get the error message
Your formula contains an invalid external reference to a worksheet.
it is likely that the sheet name you typed in step 3 is not the same as the original. Go back to step 1.
- The Source File box may now be blank. This indicates that all links point to the active file rather than the missing or damaged file. Click Close.
The chart should now reference and interact with the recovered data on the renamed sheet in the active workbook.
Additional query words:
9.00 link unlink recover corrupt damage XL2000
Keywords : kbprg kbdta kbdtacode PgmHowto KbVBA xlchart
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbhowto
|