From a column of entries I want to single out text in a gven cell and format that text only using VB
Here is what I have in VB
Private Sub replaceCSI()
Worksheets("PBR").Protect UserInterfaceOnly:=True
With Application.ReplaceFormat.Font
.FontStyle = "Bold"
.Subscript = False
.ColorIndex = 3
End With
Columns("A:A").Select
Selection.Replace What:="CSI", Replacement:="Critical Safety Item", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=True, SearchFormat:=False, _
ReplaceFormat:=True
End Sub
Thanks for any help.
kingerd



