Here an example of Find and replace. Change colour index as required
Dim Wsht As Worksheet
With Application
.FindFormat.Clear
.ReplaceFormat.Clear
End With
With Application.FindFormat.Interior
.ColorIndex = 35
End With
Application.ReplaceFormat.Interior.ColorIndex = 19
For Each Wsht In Worksheets
Wsht.Cells.Replace What:="", Replacement:="", LookAt:=xlPart, SearchOrder:= _
xlByRows, MatchCase:=False, SearchFormat:=True, ReplaceFormat:=True
Next
With Application
.FindFormat.Clear
.ReplaceFormat.Clear
End With
VBA Noob
Bookmarks