View Single Post
 
Old 02-21-2014, 12:12 AM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

So, notwithstanding all that you've posted before, you don't want only to change the font - in some cases you want to change the letters to something else as well. In that case, you can use the macro in the link I posted in post #2 in this thread. All you need to add to the code is the specification for the fonts to find and replace. For example, by adding:
Code:
        .Font.Name = "Tahoma"
        .Replacement.Font.Name = "IndexBlack"
before:
.Text = Split(xlFList, "|")(I)
You also need to delete:
.MatchWholeWord = True
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote