P
Pete
I am sure this is easy ! but...
I would like to have a macro delete the first line of each section in a
document
My attempt below does not work - can anyone correct it for me
Thanks
pete
Dim s As Variant
For Each s In ActiveDocument.Sections
With s
.HomeKey Unit:=wdStory
.MoveDown Unit:=wdLine, Count:=1, Extend:=wdExtend
.Delete
End With
Next
I would like to have a macro delete the first line of each section in a
document
My attempt below does not work - can anyone correct it for me
Thanks
pete
Dim s As Variant
For Each s In ActiveDocument.Sections
With s
.HomeKey Unit:=wdStory
.MoveDown Unit:=wdLine, Count:=1, Extend:=wdExtend
.Delete
End With
Next