suresh ullanki
Board Regular
- Joined
- Apr 29, 2013
- Messages
- 67
Hi,
I am trying to open power point using excel vba with the following code. it is not working. Can you please help
Sub PPT_Open()
File_name = Application.GetOpenFilename("Microsoft PowerPoint-Files (*.pptx*), *.pptx*")
If File_name = "False" Then
MsgBox "Stopping because you did not select a file"
Exit Sub
Else
PowerPointApp.Presentations.Open = File_name
End I
I am trying to open power point using excel vba with the following code. it is not working. Can you please help
Sub PPT_Open()
File_name = Application.GetOpenFilename("Microsoft PowerPoint-Files (*.pptx*), *.pptx*")
If File_name = "False" Then
MsgBox "Stopping because you did not select a file"
Exit Sub
Else
PowerPointApp.Presentations.Open = File_name
End I