Version

FormatConditionOperator Enumeration

Constants which specify the manner in which a cell value is compared against one or more operands.
Syntax
'Declaration
 
Public Enum FormatConditionOperator 
   Inherits System.Enum
public enum FormatConditionOperator : System.Enum 
Members
MemberDescription
BetweenThe condition evaluates to true if the cell value is between the values of the two operands.
EqualThe condition evaluates to true if the cell value is equal to the value of the operand.
GreaterThe condition evaluates to true if the cell value is greater than the value of the operand.
GreaterEqualThe condition evaluates to true if the cell value is greater than or equal to the value of the operand.
LessThe condition evaluates to true if the cell value is less than the value of the operand.
LessEqualThe condition evaluates to true if the cell value is less than or equal to the value of the operand.
NotBetweenThe condition evaluates to true if the cell value is not between the values of the two operands.
NotEqualThe condition evaluates to true if the cell value is not equal to the value of the operand.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also