VBA calling ppt

G

Guest

Is there a VBA in Excel that opens a Powerpoint file (master file that links
into Excel files), does the links automatically, break the links (to retain
the values and charts) and save the ppt file as a Pastevalue version ppt?

Cheers
Eddy
 
N

NickHK

Eddy,
Record a macro in PowerPoint for these action.
Transfer the code to Excel, using the PPTApp object:
Dim PPTApp as powerpoint.application

Set PPTApp = new powerpoint.application

with pptapp
... you recorded and corrected code here
end with

NickHK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top