What’s the syntax to insert the indicated “if”?
Selection.Find.ClearFormatting
With Selection.Find
.Text = “^p^pSupplies, Equipment”
other parm’s here…….
End With
Selection.Find.Execute
>>>>>>If the above is “found” do:
Selection.HomeKey Unit:=wdLine
Selection.MoveDown Unit:=wdLine, Count:=8, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1
>>>>>>EndIf
Thanks