Hi,
I'm struggling to get the API usage correct, even after hours of searching.
Basically, I want to do the following from my Excel file.
1) Create a new Powerpoint presentation and slide. [DONE]
2) Copy OLEObject from the Excel file into the Powerpoint slide.
What I have done so far for the no. 2 is
Dim s As Shapes
For Each Obj in Worksheets("TEMPLATE").OLEObjects
'Copy OLEObjects from Excel to Powerpoint slide
Set s = pptSlide.Shapes.AddOLEObject '( ... ?? ... )
Next Obj
Please help me on how to copy the OLEObjects from the Excel file into the Powerpoint slide.
Thanks .