Hi,
I have the code below that works so long as there are no #DIV/0! errors in the column. What do I need to add to this code to have it ignore those errors?
Thanks!
Dim ramcel As Range
For Each ramcel In Range("E:E")
If ramcel.Value < 0.95 Then
ramcel.Font.Color = vbRed
ramcel.Interior.Color = 13617407
End If
Next
I have the code below that works so long as there are no #DIV/0! errors in the column. What do I need to add to this code to have it ignore those errors?
Thanks!
Dim ramcel As Range
For Each ramcel In Range("E:E")
If ramcel.Value < 0.95 Then
ramcel.Font.Color = vbRed
ramcel.Interior.Color = 13617407
End If
Next