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

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Jonnyu182

Board Regular
Joined
May 30, 2008
Messages
104
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

Stormseed

Banned
Joined
Sep 18, 2006
Messages
3,274
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,191,555
Messages
5,987,257
Members
440,086
Latest member
Mahi786

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
Top