This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
Sub 批量修改母版()
Application.ScreenUpdating = False
newMasterName = "创意素材铺YYDS" ' 指定的新母版名称
Set fso = CreateObject("scripting.filesystemobject")
Set ff = fso.GetFolder("C:\Users\Administrator\Desktop\test") 'ThisWorkbook.Path是当前代码文件所在路径,路径名可以根据需求修改
ActiveSheet.UsedRange.ClearContents
a = 1
For Each f In ff.Files
If f Like ".ppt" Or f Like ".pptx" Then
' MsgBox "发现" & f.Name
Set Myppt = CreateObject("PowerPoint.Application")
Myppt.Visible = True
Set newppt = Myppt.Presentations.Open(Filename:=f)