I'm using a simple VBA code to open a PowerPoint file from an Excel file.
Sub PPT()
Dim myPresentation As Object
Dim PowerPointApp As Object
Set myPresentation = CreateObject("Powerpoint.application")
myPresentation.presentations.Open "C:\Folder\Subfolder\F11_Blank.pptx"
myPresentation.Visible =...