I am using the code below as part of a set of criteria to setup an Icon Set in a range N3:N200. Is there an option to not show the icon in the cell associated with IconCriteria(3) in the range N3:N200?
Code:
With .FormatConditions(1)
.SetFirstPriority
.ReverseOrder = False
.ShowIconOnly = False
.IconSet = ActiveWorkbook.IconSets(xl5Arrows)
.
.
With .IconCriteria(3)
.Type = xlConditionValueNumber
.Value = 2
.Operator = xlGreaterEqual
End With