B
Brian Keable
Ihave recorded a macro :
Sub Macro6()
'
' Macro6 Macro
' Macro recorded 04/02/2006 by Keable
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^0180"
.Replacement.Text = "^0170"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Purpose of macro is to replace the acute accent character Code 0180 with a
Spade symbol (character code 0170) from the Symbol font. When I record the
macro - it works , but not when run the macro.
In the manual process I tell Replace that I wish to format and use the
Symbol font.
However as you can see there is nothing in the macro to indicate which font
to use
How can I fix? I have many docs from an friends old Mac that need converting
in this way
Sub Macro6()
'
' Macro6 Macro
' Macro recorded 04/02/2006 by Keable
'
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^0180"
.Replacement.Text = "^0170"
.Forward = True
.Wrap = wdFindContinue
.Format = True
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Purpose of macro is to replace the acute accent character Code 0180 with a
Spade symbol (character code 0170) from the Symbol font. When I record the
macro - it works , but not when run the macro.
In the manual process I tell Replace that I wish to format and use the
Symbol font.
However as you can see there is nothing in the macro to indicate which font
to use
How can I fix? I have many docs from an friends old Mac that need converting
in this way