Hello bta,
It is happening because those conditions equate to zero. The final Case statement tests for zero and the true condition colors the cell yellow. He final compare need to be changed...
Private Sub Worksheet_Change(ByVal Target As Range)
Dim oCell As Range
For Each oCell In Target
Select Case oCell.Value
Case Is = "BV"
oCell.Interior.ColorIndex = 4
Case Is = "RV", "SV", "CV", "ZV"
oCell.Interior.ColorIndex = 2
Case Is > 0
If oCell.Value < 9,5 Then
oCell.Interior.ColorIndex = 6
End If
End Select
Next oCell
End Sub
Bookmarks