A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
ChartDataSheet gives you a reference to the data sheet behind a chart that you created in PowerPoint. It LOOKS and mostly ACTs a lot like an Embedded Excel chart but it's not quite the same.
Have a play with something like this. You'll have to set a reference to whatever version of Excel you're working with (aka Early Binding). You can convert to Late Binding once you have it working and don't need help from Intellisense, if you like.
Sub EmbeddedWorksheet()
Dim oWs As Excel.Worksheet
With ActiveWindow.Selection.ShapeRange(1)
Set oWs = .OLEFormat.Object.Worksheets(1)
With oWs
.Cells(1, 2) = "I changed it back!"
End With
End With
End Sub