Dim pPar As Word.Paragraph
For Each pPar In ActiveDocument.Paragraphs
With pPar
If InStr(.Range, "text to look for") > 0 Then
.DropCap.Position = wdDropNormal
End If
End With
Next
> I am trying to write a macro that will add a drop cap to every
> paragraph in a document where a certain text string is found. Is there
[quoted text clipped - 3 lines]
>
> Thanks for any help you can give.
Kirk - 14 Jan 2005 22:39 GMT
Thanks a bunch, this is exactly what I was looking for.