Macro para exportar lista de excel a títulos en power point
Amigo necesito ayuda para pasar una lista de excel a títulos en slides de power point y adicional insertar las imágenes que tiene la ubicación en otra columna
Estoy usando la siguiente sentencia pero me hace falta el buckle para crear las nuevas hojas con los nombres y el de insertar las fotos
Sub Ejemplo1()
Dim pptApp As PowerPoint.Application
Dim pptPres As PowerPoint.Presentation
Dim pptSlide As PowerPoint.Slide
Dim pptShape As PowerPoint.Shape
Dim excelTable As Excel.Range
Dim archivoPPT As PowerPoint.Application
Dim diapositiva As PowerPoint.Slide
Dim tableranges As Excel.Range
Dim i As Integer
'Asignar la tabla que queremos copiar a la variable excelRange
Set excelTable = Worksheets("Ejemplo").Range("a2")
'Comprobar si PowerPoint esta abierto y en caso de no estarlo abrirlo
On Error Resume Next
Set pptApp = GetObject("", "PowerPoint.Application")
Err.Clear
If pptApp Is Nothing Then Set pptApp = CreateObject(class:="PowerPoint.Appliaction")
pptApp.Visible = True
pptApp.Activate
'Crear una nueva presentacion de PowerPoint
Set pptPres = pptApp.Presentations.Add
Set pptSlide = pptPres.Slides.Add(1, ppLayoutBlank)
'Copiar la tabla de Excel
excelTable.Copy
'Pegar la tabla de Excel en PowerPoint y centrarla en la diapositiva
pptSlide.Shapes.PasteSpecial(ppPasteEnhancedMetafile).Select
Set pptApp = Nothing
Set pptPres = Nothing
Set pptSlide = Nothing
Set pptShape = Nothing
Set excelTable = Nothing
Set archivoPPT = Nothing
Set diapositiva = Nothing
Set tableranges = Nothing
End Sub