Set the text of the second paragraph in the second shape on the sixth slide in the presentation : Slide Text « PowerPoint « VBA / Excel / Access / Word
Set the text of the second paragraph in the second shape on the sixth slide in the presentation
Sub textRange()
ActivePresentation.Slides(1).Shapes(2).TextFrame.TextRange _
.Paragraphs(Start:=2, Length:=1).Text = "VP of Business Development" End Sub