To All If This Helps:
I read in another areas how under Microsoft Word, you can put in certain words in a Macro and that Macro fonts the words you put in the Macro.....so I tried it in a Word Document, it worked and then I moved it to Outlook using the normal additional lines to have Outlook recognize a macro from Microsoft Word.....so here is the Macro that you put in the names in the Array you want to font, and it does it, so the question now is how to use an array regarding a the words from a field of the contact?
Sub Variables_NormalTxt()
Dim oRng As Word.Range
Dim oRngFC As Word.Range
Dim varUbyteNormal As Variant
Dim ArrayItem As String
Dim i As Integer
Dim Document As Word.Document
Dim Word As Word.Application
Dim selection As Word.selection
Set Ins = Application.ActiveInspector
Set Document = Ins.WordEditor
Set Word = Document.Application
Set selection = Word.selection
varUbyteNormal = Array("Company Name:", "Full Name/", "Mobile Number:", "Business Number:", "Last Status:")
For i = 0 To UBound(varUbyteNormal)
selection.Find.Wrap = wdFindContinue
rp:
With selection.Find
.ClearFormatting
.MatchWholeWord = True
.MatchCase = False
If .Execute(varUbyteNormal(i)) Then
selection.Font.Name = "Times New Roman"
selection.Font.Color = Black
selection.Font.Bold = True
selection.Font.Size = 14
selection.Font.Underline = True
GoTo rp:
End If
End With
Next
End Sub