Sub CopyToPowerPoint()
Dim pptApp As PowerPoint.Application
Dim pres1 As PowerPoint.Presentation
Dim Slide1 As PowerPoint.Slide
Set pptApp = CreateObject("PowerPoint.Application")
With pptApp
.Visible = True
Set pres1 = pptApp.Presentations.Add
End With
Set Slide1 = pres1.Slides.Add(1, ppLayoutText)
End Sub