Excel VBA to refresh power point slides

azahi

New Member
Joined
Jul 26, 2017
Messages
1
I am new to VBA and wondering if some one can help me. I have written Vba codes which creates power point slides by taking data and charts from the excel . i am using excel 2010 and power point 2010.
The code is working ok, the issue i am facing is the pictures are not pasted in the middle of the slides. All the shapes are pasted on the top left hand corner.
Below is my codes any help will be appreciated. i have tried different methods but i am definitely missing very important point. Also one more thing, some time when i run the code, not both of them get updated but when i refresh again two or three times it gets updated.


Sub creatpp()

Dim myppt As PowerPoint.Application
Set myppt = New PowerPoint.Application
myppt.Visible = msoCTrueActiveSheet.Shapes.Range(Array("Object 4")).Select Selection.Verb Verb:=xlOpen

Dim mypres As PowerPoint.Presentation
Set mypres = myppt.ActivePresentation
Dim mySlide1 As PowerPoint.Slide
Dim mySlide4 As PowerPoint.Slide
Set mySlide1 = mypres.Slides(1)
Set mySlide4 = mypres.Slides(4)
Dim wb As WorkbookSet wb = ActiveWorkbookwb.Activate

wb.Sheets("Slides").Visible = xlSheetVisible
wb.Sheets("Slides").Range("A12:G20").Copy


' Slide 1 Copy and paste next range
myppt.Activate
On Error Resume Next
For Each Shape In mySlide1.Shapes
If Shape.Type = msoPicture Then
Shape.Delete
End If
Next
mySlide1.Shapes.PasteSpecial ppPasteMetafilePicture

'With PPPres.Slides(1)
'.Shapes.Paste
'With myslides1.Shapes(Shapes.Count)
'.LockAspectRatio = msoTrue
'.Left = 25
'.Top = 100
'.Height = 300
'End With



'Slide 4 Copy and paste next range
wb.Sheets("Slides").Range("A112:F118").Copy
myppt.Activate
On Error Resume Next
For Each Shape In mySlide4.Shapes
If Shape.Type = msoPicture Then
Shape.Delete

End If
Next
mySlide4.Shapes.PasteSpecial ppPasteMetafilePicture



Application.ErrorCheckingOptions.NumberAsText = False

wb.Sheets("Slides").Visible = xlSheetVeryHidden

End Sub<strike></strike>
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Welcome to the Forum


Code:
' Excel module
Sub creatpp()
Dim myppt As PowerPoint.Application, wb As Workbook, shp As PowerPoint.Shape
Dim mypres As Presentation, mySlide1 As Slide, mySlide4 As Slide
Set myppt = New PowerPoint.Application
myppt.Visible = msoCTrue
ActiveSheet.Shapes.Range(Array("Object 1")).Select
Selection.Verb Verb:=xlOpen
Set mypres = myppt.ActivePresentation
mypres.Slides.Add Index:=mypres.Slides.Count + 1, Layout:=ppLayoutCustom
Set mySlide1 = mypres.Slides(1)
Set mySlide4 = mypres.Slides(2)
Set wb = ActiveWorkbook
wb.Activate
wb.Sheets("Slides").Visible = xlSheetVisible
wb.Sheets("Slides").[A12:G20].Copy
myppt.Activate
For Each shp In mySlide1.Shapes
    If shp.Type = msoPicture Then shp.Delete
Next
mySlide1.Shapes.PasteSpecial ppPasteMetafilePicture
With mySlide1.Shapes(mySlide1.Shapes.Count)
    .LockAspectRatio = msoTrue
    .Left = (mypres.PageSetup.SlideWidth - .Width) / 2      ' center
    .Top = (mypres.PageSetup.SlideHeight - .Height) / 2
End With
wb.Sheets("Slides").[A112:F118].Copy
myppt.Activate
For Each shp In mySlide4.Shapes
    If shp.Type = msoPicture Then shp.Delete
Next
mySlide4.Shapes.PasteSpecial ppPasteMetafilePicture
With mySlide4.Shapes(mySlide4.Shapes.Count)
    .Top = (mypres.PageSetup.SlideHeight - .Height) / 2
    .Left = (mypres.PageSetup.SlideWidth - .Width) / 2
End With
Application.ErrorCheckingOptions.NumberAsText = False
DoEvents
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,263
Members
449,219
Latest member
daynle

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top