D
DMP
Hi,
Is it possible using the code below to have more than
three conditions in a column? If so,how do I modify to use
at least 5 conditions using s different colors??
Thanx
Range("K2:K41").Select
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlCellValue,
Operator:=xlEqual, _
Formula1:="=""Bad Formula"""
With Selection.FormatConditions(1).Font
.Bold = True
.Italic = False
End With
Selection.FormatConditions(1).Interior.ColorIndex = 38
End Sub
Is it possible using the code below to have more than
three conditions in a column? If so,how do I modify to use
at least 5 conditions using s different colors??
Thanx
Range("K2:K41").Select
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlCellValue,
Operator:=xlEqual, _
Formula1:="=""Bad Formula"""
With Selection.FormatConditions(1).Font
.Bold = True
.Italic = False
End With
Selection.FormatConditions(1).Interior.ColorIndex = 38
End Sub