Hello everybody.

I got this issue. I need to execute a power point presentation from a macro in excel. I need not just open the presentation but run it. This is open in a full screen and run it with the annimations attributes etc.

I've tried this:

Sub Open_PowerPoint_Presentation()
Dim objPPT As Object
Set objPPT = CreateObject("PowerPoint.Application")
objPPT.Visible = True
objPPT.Presentations.Open "C:\Users\delatorre-l\Desktop\activepauses\activepauses.pptm"

End Sub

but it only opens the presentation file.

can anyone help me? Thanks in advance