Try this
Sub REcolorer()
Application.ScreenUpdating = False
Dim cl As Range
Dim active_rng As Range
Set active_rng = Range("A2:A1200")
For Each cl In active_rng
Application.StatusBar = "Running Macro"
If cl.Interior.Color = RGB(204, 255, 255) Or _
(cl.Interior.Color = RGB(204, 255, 204)) Or _
(cl.Interior.Color = RGB(255, 255, 153)) Or _
(cl.Interior.Color = RGB(153, 204, 255)) Or _
(cl.Interior.Color = RGB(255, 153, 204)) Or _
(cl.Interior.Color = RGB(204, 153, 255)) Or _
(cl.Interior.Color = RGB(255, 204, 153)) Then
With cl.Interior
.Pattern = xlGray8
.PatternThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = -0.499984740745262
End With
End If
Next cl
Set active_rng = Range("C2:C1200")
For Each cl In active_rng
Application.StatusBar = "Running Macro"
If cl.Interior.Color = RGB(204, 255, 255) Or _
(cl.Interior.Color = RGB(204, 255, 204)) Or _
(cl.Interior.Color = RGB(255, 255, 153)) Or _
(cl.Interior.Color = RGB(153, 204, 255)) Or _
(cl.Interior.Color = RGB(255, 153, 204)) Or _
(cl.Interior.Color = RGB(204, 153, 255)) Or _
(cl.Interior.Color = RGB(255, 204, 153)) Then
With cl.Interior
.Pattern = xlGray8
.PatternThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = -0.499984740745262
End With
End If
Next cl
Application.StatusBar = False
End Sub
Bookmarks