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

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
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,215,035
Messages
6,122,791
Members
449,095
Latest member
m_smith_solihull

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