The macro recorder does not record formatting associated with the replace
tool so your macro finds nothing and replaces it with nothing. You must add
the required font formatting manually eg
Sub Macro1()
Dim sView As Boolean
sView = ActiveWindow.View.ShowHiddenText
ActiveWindow.View.ShowHiddenText = True
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = ""
'********************
.Font.Hidden = True
'********************
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
ActiveWindow.View.ShowHiddenText = sView
End Sub
The macro also ensures that the hidden text is displayed before deleting it
regardless of whether it was displayed previously, then resets the display
to its previous state viz-a-viz hidden text.
http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Greetings MS WORD folk,
> when I record a new macro to remove hidden text in WORD 2003 it does
[quoted text clipped - 25 lines]
> any and all advice greatly appreciated.
> many thanks Davidh
davidh - 27 Sep 2007 11:53 GMT
Thank You Graham Mayor
that was exactly the information that I was seeking,
many thanks
Davidh
Graham Mayor - 27 Sep 2007 14:16 GMT
You are welcome :)

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Thank You Graham Mayor
> that was exactly the information that I was seeking,
> many thanks
> Davidh