A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Sub BlankAmp()
' change occurrence of &followed by characters up to a space to be white
Dim C As Range
Dim iStart As Integer
Dim iEnd As Integer
For Each C In Selection.Cells ' Change Selection to Range("B7:H50")
If Not C.HasFormula Then ' can't do this for cells with formulas
iStart = InStr(C.Value, "&")
If iStart > 0 Then ' there is an &
iEnd = InStr(iStart, C.Value, " ")
C.Characters(iStart, iEnd - iStart).Font.ColorIndex = 2
End If
End If
Next
End Sub