ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 12350|回复: 2

[求助] 如何将一个PPT两页两页拆分成多个PPT

[复制链接]

TA的精华主题

TA的得分主题

发表于 2015-8-31 14:14 | 显示全部楼层 |阅读模式
各位老师好,我是ExcelHome的新人。我个人是教育工作者,一直都在跟PPT打交道。最近开始接触VBA,感觉对自己的工作非常有帮助。
我利用VBA,用Excel表格生成了一个英语短语的PPT。这个PPT上每两页是针对一个短语的解释。现在想把这个PPT,每两页保存为一个新的PPT,但是却摸不到方法了。
单页保存PPT可以用export解决,要保存多页的话,想请教一下各位老师,应当怎样操作才好?先行谢谢了!{:soso_e183:}
另外,想向各位老师求教,目前见到的比较多的是关于excel的VBA教程,单纯讲PPT的却不多。请问哪里有比较好的学习资料,收费的也可以。

2M - 副本.zip

1.38 MB, 下载次数: 30

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-9-1 11:21 | 显示全部楼层
本帖最后由 philhomic 于 2015-9-1 11:22 编辑

我在以下链接中找到一种解决办法,但是效率很低。如果是一个几兆的PPT,这样拆分下来要费好长的时间。不知道是否有更好更有效率的方法?http://www.pptfaq.com/FAQ01086_Break_a_presentation_up_into_several_smaller_presentations.htm

链接中的方法,是每次把整个PPT都另存一下,然后删掉多与的slides。代码如下:
  1. Sub SplitFile()

  2.     Dim lSlidesPerFile As Long
  3.     Dim lTotalSlides As Long
  4.     Dim oSourcePres As Presentation
  5.     Dim otargetPres As Presentation
  6.     Dim sFolder As String
  7.     Dim sExt As String
  8.     Dim sBaseName As String
  9.     Dim lCounter As Long
  10.     Dim lPresentationsCount As Long     ' how many will we split it into
  11.     Dim x As Long
  12.     Dim lWindowStart As Long
  13.     Dim lWindowEnd As Long
  14.     Dim sSplitPresName As String

  15.     On Error GoTo ErrorHandler

  16.     Set oSourcePres = ActivePresentation
  17.     If Not oSourcePres.Saved Then
  18.         MsgBox "Please save your presentation then try again"
  19.         Exit Sub
  20.     End If

  21.     lSlidesPerFile = CLng(InputBox("How many slides per file?", "Split Presentation"))
  22.     lTotalSlides = oSourcePres.Slides.Count
  23.     sFolder = ActivePresentation.Path & ""
  24.     sExt = Mid$(ActivePresentation.Name, InStr(ActivePresentation.Name, ".") + 1)
  25.     sBaseName = Mid$(ActivePresentation.Name, 1, InStr(ActivePresentation.Name, ".") - 1)

  26.     If (lTotalSlides / lSlidesPerFile) - (lTotalSlides \ lSlidesPerFile) > 0 Then
  27.         lPresentationsCount = lTotalSlides \ lSlidesPerFile + 1
  28.     Else
  29.         lPresentationsCount = lTotalSlides \ lSlidesPerFile
  30.     End If

  31.     If Not lTotalSlides > lSlidesPerFile Then
  32.         MsgBox "There are fewer than " & CStr(lSlidesPerFile) & " slides in this presentation."
  33.         Exit Sub
  34.     End If

  35.     For lCounter = 1 To lPresentationsCount

  36.         ' which slides will we leave in the presentation?
  37.         lWindowEnd = lSlidesPerFile * lCounter
  38.         If lWindowEnd > oSourcePres.Slides.Count Then
  39.             ' odd number of leftover slides in last presentation
  40.             lWindowEnd = oSourcePres.Slides.Count
  41.             lWindowStart = ((oSourcePres.Slides.Count \ lSlidesPerFile) * lSlidesPerFile) + 1
  42.         Else
  43.             lWindowStart = lWindowEnd - lSlidesPerFile + 1
  44.         End If

  45.         ' Make a copy of the presentation and open it
  46.         sSplitPresName = sFolder & sBaseName & _
  47.                "_" & CStr(lWindowStart) & "-" & CStr(lWindowEnd) & "." & sExt
  48.         oSourcePres.SaveCopyAs sSplitPresName, ppSaveAsDefault
  49.         Set otargetPres = Presentations.Open(sSplitPresName, , , True)

  50.         With otargetPres
  51.             For x = .Slides.Count To lWindowEnd + 1 Step -1
  52.                 .Slides(x).Delete
  53.             Next
  54.             For x = lWindowStart - 1 To 1 Step -1
  55.                 .Slides(x).Delete
  56.             Next
  57.             .Save
  58.             .Close
  59.         End With

  60.     Next    ' lpresentationscount

  61. NormalExit:
  62.     Exit Sub
  63. ErrorHandler:
  64.     MsgBox "Error encountered"
  65.     Resume NormalExit
  66. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2015-9-1 15:53 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
自己鼓捣出来第二种方法,虽然写得笨了点,但是还算是好用:
  1. Sub createNewPres()

  2. Dim oldPres As Presentation, newPres As Presentation, fPath As String, fName As String
  3. Set oldPres = ActivePresentation
  4. Set newPres = Presentations.Add(True)
  5. fPath = oldPres.Path & ""
  6. For i = 1 To oldPres.Slides.Count Step 2
  7.     fName = oldPres.Slides(i).Shapes("Title 1").TextFrame.TextRange.Text
  8.    
  9.     oldPres.Slides(i).Copy
  10.     newPres.Slides.Paste
  11.     newPres.Slides(1).Design = oldPres.Slides(i).Design
  12.     newPres.Slides(1).ColorScheme = oldPres.Slides(i).ColorScheme
  13.     newPres.Slides(1).FollowMasterBackground = oldPres.Slides(i).FollowMasterBackground
  14.    
  15.     oldPres.Slides(i + 1).Copy
  16.     newPres.Slides.Paste
  17.     newPres.Slides(2).Design = oldPres.Slides(i + 1).Design
  18.     newPres.Slides(2).ColorScheme = oldPres.Slides(i + 1).ColorScheme
  19.     newPres.Slides(2).FollowMasterBackground = oldPres.Slides(i + 1).FollowMasterBackground
  20.    
  21.     newPres.SaveAs fPath & fName & ".ppt"
  22.     newPres.Close
  23.     Set newPres = Presentations.Add(True)
  24. Next i

  25. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-26 05:40 , Processed in 0.037527 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表