Sub Macro1() ' ' Macro1 Macro ' Macro recorded 10/18/2007 by Me ' Selection.Find.ClearFormatting With Selection.Find .Text = "X" .Replacement.Text = "" .Forward = True .Wrap = wdFindContinue .format = False .MatchCase = False .MatchWholeWord = False .MatchKashida = False .MatchDiacritics = False .MatchAlefHamza = False .MatchControl = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute ActiveDocument.Bookmarks("\word").Range.Select End Sub