How to close Power Point?

daniel50096230

Board Regular
Joined
May 2, 2008
Messages
163
I would like to export my Excel to PPT format...Before I export,I would like to close the existing Power Point that had been opened...How can I do it using VBA....
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
I use the code below to open powerpoint and close the active window before opening a new one and copying some graphs from excel in.

Code:
Dim PPapp As PowerPoint.Application
Dim PPPres As PowerPoint.Presentation
Dim PPSlide As PowerPoint.Slide

Set PPapp = CreateObject("PowerPoint.Application")
PPapp.Visible = True
On Error Resume Next
PPapp.ActivePresentation.Close
On Error GoTo 0
 
Upvote 0
Hi Jonny :biggrin:

Your signature makes more sense this way:

A train station is where the train starts. A bus station is where the bus starts. On my desk, I have a work station..
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top