Excel 2010
PP 2010
Hi guys,
I have a rather simple question that on of you might hopefully be able to answer. Im using the following code to save a presentation that i just opened and updated from Excel VBA.
From this code PP is saving them as ppt while I would like to save them as pptx, for compatibility reasons.
How could i simply modify this to save as pptx instead of ppt.Dim FName As String Dim FPath As String 'Path to save in' FPath = "M:\random\" 'name from excel sheet' FName = Sheets("ge aktuell").Range("A1").Text pApp.ActivePresentation.SaveAs FPath & FName & " Geschäftsentwicklung", 1
thanks in advance
Edit: Problem solved
pApp.ActivePresentation.SaveAs FPath & FName & " Geschäftsentwicklung" & ".pptx"





Reply With Quote