hier ist das zugehörige Macro:
Code:
Selection.Find.ClearFormatting
With Selection.Find
.Text = "^p*"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchByte = False
.CorrectHangulEndings = True
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
.MatchFuzzy = False
End With
Selection.Find.Execute
Selection.Find.Execute
Selection.Find.Execute
das ^p* ist die Suche nach der Absatzmarke mit anschließendem *
Gruß
K-H