Call a .pps from excel

Qroozn

Well-known Member
Joined
Mar 12, 2002
Messages
543
How can i call a powerpoint show to open from an excel macro.

I have tried using
microsoftappl.xlpowerpoint

or something similar... but it just opens a new presentation.

TIA :cool:
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Sub DisplayWordAutomation()
Set wordapp = CreateObject("Word.Application")
'WordApp.Application.Visible = True
With wordapp
.Visible = True
.Activate
.Run (" type macro name here ")
.Quit SaveChanges:=wdDoNotSaveChanges
End With
End Sub

Here is a macro I use to open word from excel and then run a word macro. I would just change the word stuff to powerpoint and create a macro in powerpoint to open the file you want and type that macro name in the macro above (no spaces when you type the name). Let me know if it works.
 
Upvote 0
but if i am simply trying to open a file do i really need to open one application (.ppt) to open another application(.pps)

there must be an easier way.
 
Upvote 0
I am not sure I understand.

You are trying to open Powerpoint in Excel.

Or

Start a Presentation in Powerpoint.
 
Upvote 0
Hi Qroozn:
I just wanted to jump in on the issue of *.ppt vs *.pps

A file that has a pps (powerPoint show extension) will automatically begin to play -- without having to first open the file and then SlideShow|ViewShow

otherwise a .pps file is the same as .ppt file.

Regards!

Yogi Anand
 
Upvote 0
I understand that yogi.. thats why i named the file as .pps
but surely (hopefully) there must be a different way of opening the file then to open ppt application, and call a macro from ppt which then runs the pps file.
 
Upvote 0
sorry.. my fault. I will explain a bit clearer.

I have an excel program. and i also have a powerpointpresentation about the program.
I want to click on a button in excel and have it run the powerpointshow.

I hope that is clearer
 
Upvote 0

Forum statistics

Threads
1,214,523
Messages
6,120,028
Members
448,940
Latest member
mdusw

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