I'm trying to move graphs that I've copied from excel into powerpoint using VBA. Code is below. Not sure why it's not working. How would you guys approach it? I've tried many different methods including inserting a ".select" after the ".paste" but it's giving me errors. Really not sure... =\ Any help is appreciated.
`
Sub Automating_PowerPoint_from_Excel_1()
'Automate using Early Binding: Add a reference to the PowerPoint Object Library in Excel (your host application) by clicking Tools-References in VBE, which will enable using PowerPoint's predefined constants. Once this reference is added, a new instance of PowerPoint application can be created by using the New keyword.
'Create a new PowerPoint ppt of 3 slides with sound effect, and run a slide show.
'variables declared as a specific object type ie. specific to the application which is being automated:
Dim applPP As PowerPoint.Application
Dim prsntPP As PowerPoint.Presentation
Dim slidePP As PowerPoint.Slide
Dim shapePP As PowerPoint.Shape
Dim lSlideCount As Long
Dim strPpPath As String, strPpName As String
Dim oSh As Shape
'Create a new instance of the PowerPoint application. Set the Application object as follows:
Set applPP = CreateObject("Powerpoint.Application")
'make the PowerPoint window visible:
applPP.Visible = True
'maximize PowerPoint window:
applPP.WindowState = ppWindowMaximized
applPP.Presentations.Open "C:\Users\....\Template A Powerpoint.pptx"
Set prsntPP = applPP.ActivePresentation
'-------------------------
ActiveWorkbook.Sheets("...").ChartObjects(4).Activate
ActiveChart.ChartArea.Copy
prsntPP.Slides(3).Shapes.Paste
`
I've included two procedures here - one will create an instance of powerpoint, the other will copy charts, ranges and add some text to a text box.
NB: I haven't fully tested, just ripped it out of a project I was working on.
If you're putting more than one chart on a sheet you may want to have the Top and Left values as variables.
If lTop is a long representing the top position - place this to calculate what the next top value should be in relation to the current selection.
NB: This copy and pastes a picture of your range/chart and not an actual range/chart object.