【发布时间】:2019-08-20 15:32:52
【问题描述】:
我想从 powerpoint 演示文稿中创建 excel 工作表,我可以在其中保留 powerpoint 幻灯片的格式并能够调整某些值。有人知道方法吗?
我听说从 excel 工作表中创建 powerpoint 幻灯片,但我需要反过来,因为我想保持 powerpoint 幻灯片的格式,但需要能够调整某些值。有人知道方法吗?
我基本上需要一个看起来和工作起来都像我的 powerpoint 幻灯片的 Excel 工作表。
这是我目前所拥有的:
Dim PowerPointApp As Object
Dim myPresentation As Object
.
.
.
'Adds a slide to the presentation - is this also possible for worksheets?
Set mySlide = myPresentation.slides.Add(myPresentation.slides.Count + 1, 11) '11 = ppLayoutTitleOnly
' Pastes the copied range out of the excel into the Powerpoint
mySlide.Shapes.PasteSpecial DataType:=2
.
.
.
我想做的是把这些转过来,我找不到任何提示。无论是在书上还是在互联网上。
【问题讨论】:
-
您的问题的答案是是。到目前为止,您尝试过什么? SO 可以帮助解决特定的编码问题,但不是为您提供代码的服务。
-
我添加了我目前使用的内容。
标签: excel vba powerpoint