A
avkokin
Hello.
There is some tables into document. They has separated one (or more)
the pilcron. The columns thouse tables is identicaly. The tables is
identicaly.
Question: how to delete all the pilcrons between the tables?
I use folowing macro but it don't worked (last pilcron don't delete)
and cycle.
Sub delParSignBetweenTables()
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "^p"
.Format = False
.Forward = True
.Wrap = wdFindContinue
.Execute
While .Found
Selection.Delete wdCharacter, 1
.Execute
Wend
End With
End Sub
Thank you very much.
There is some tables into document. They has separated one (or more)
the pilcron. The columns thouse tables is identicaly. The tables is
identicaly.
Question: how to delete all the pilcrons between the tables?
I use folowing macro but it don't worked (last pilcron don't delete)
and cycle.
Sub delParSignBetweenTables()
With Selection.Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "^p"
.Format = False
.Forward = True
.Wrap = wdFindContinue
.Execute
While .Found
Selection.Delete wdCharacter, 1
.Execute
Wend
End With
End Sub
Thank you very much.