Hi All,

i'm tring to automate a report that is produced in Powerpoint.

the data is from excel so i need to open a powerpoint instance and then create a loop which adds 7 slides that are all blank

here's what i have so far:

Sub TESTPPT()
Dim pptApp As PowerPoint.Application
Dim pptPres As PowerPoint.Presentation
Dim pptSlide As PowerPoint.Slide
Dim Rng As Range
Dim Layout(15) As String

Set Rng = Sheets("PPTSETUP").Range("B3")

For L = 1 To 7
    Layout(L) = Rng.Offset(0, L + 1).Value
Next L

Set pptApp = CreateObject("Powerpoint.application")
pptApp.Visible = True
Set pptPres = pptApp.Presentations.Add


For s = 1 To 7
    Set pptSlide = pptPres.Slides.Add(s, Layout(s))
Next s


End Sub
it debugs on the for s loop?

any ideas why?