search for special character in different fonts

Joined
Oct 23, 2015
Messages
1
Reaction score
0
Hi,

I have some hugh document where some text is highlighted with --> which gives an arrow in word. The character is ^0224 in the font Wingdings. Now, the document was formated with different fonts.

I try to Change the character 0224 back to wingdings and make it bold. Some of those arrows are still there and have to be bold too.

Can I search for those characters in one search or do I have to do this in several passes - one for each font?

This is my Version at the Moment:

With Selection.Find
.ClearFormatting
.MatchWholeWord = True
.MatchCase = False
.Execute FindText:="^0224"
Selection.Font.Bold = True
Selection.Font.Name = "Wingdings"
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top