Eloise T
Active Member
This is the Conditional Format specifications that I need to duplicate in VBA code:
This is what I've got. It doesn't error out, but it doesn't work either.
The problem as I see it is indicating the Cell Value in the VBA code ( Formula1:=">=6" )
Thanks for your help in advance.
This is what I've got. It doesn't error out, but it doesn't work either.
Code:
With Ws.Range("D3:D250")
.FormatConditions.Add Type:=xlExpression, Formula1:=">=6"
End With
The problem as I see it is indicating the Cell Value in the VBA code ( Formula1:=">=6" )
Thanks for your help in advance.