Trying to make a macro similar to the one you guys helped me with the other day, but I'm getting a Compile error: Statments and labels invalid between Select Case and first Case at the first match.Offset. Can anybody help me out?
Code:
Sub Trues()
Dim match
match = "TRUE"
For Each match In Range("l1:l")
Select Case match
match.Offset(0, -11) = "Matches - Good"
match.Offset(0, -11).Interior.ColorIndex = 4
Case Else
End Select
Next match
End Sub
Last edited: