Hi,
this macro is somehow giving me a run time error 48,why?
this macro is somehow giving me a run time error 48,why?
Code:
Sub MarkCells()
With Sheet1
Dim c As Range
For Each c In Range("b1", Range("b1").End(xlDown))
If c.FormatConditions.Font.ColorIndex = 3 Then
c.Offset(0, 5).Value = "FOR GITB"
End If
Next c
End With
End Sub