Hi I have this code
Sub Cond1()
Dim cell As Range
For Each cell in Range("E5:AC16")
If cell.value > 2 And cell.value < -2 Then
cell.Interior.Color = vbRed
End If
Next cell
End Sub
But nothing happens does anyone know any reasons why????
Am I missing something
Sub Cond1()
Dim cell As Range
For Each cell in Range("E5:AC16")
If cell.value > 2 And cell.value < -2 Then
cell.Interior.Color = vbRed
End If
Next cell
End Sub
But nothing happens does anyone know any reasons why????
Am I missing something