我想在powerpoint文件中编辑图表的值。我无法在任何地方找到适当的方法,如.Range和.Cell。
ActivePresentation.Slides(sl).Shapes(sh).Chart.DataTable
似乎没有传统DataTable方法中的所有方法。
答案 0 :(得分:10)
这样的事情应该有效:
With ActivePresentation.Slides(sl).Shapes(sh).Chart.ChartData
.Activate
.Workbook.Sheets(1).Range("A1").Value = "test_data"
.Workbook.Close
End With