I try to apply a conditional formatting to change the background color of cell if is 2 conditions return true. Individual condition are working but if i add the AND(), it's not working...
.FormatConditions.Add Type:=xlExpression, _
Formula1:="=AND(A2="""", A2<>B2)"
.FormatConditions(5).Interior.Color = vbBlack
.FormatConditions(5).StopIfTrue = False
EDIT: don't ask me, A2 is empty and different than B2 ;)