Enum ReportFilterCriteriaOperator
- Namespace
- Smartsheet.Api.Models
- Assembly
- smartsheet-csharp-sdk.dll
Enum representing the condition operator for filter criteria.
public enum ReportFilterCriteriaOperator
Fields
BETWEEN = 5Between two values.
CONTAINS = 4Contains the value.
DOES_NOT_CONTAIN = 23Does not contain the value.
EQUAL = 0Equal to.
FUTURE = 8Is in the future.
GREATER_THAN = 2Greater than.
GREATER_THAN_OR_EQUAL = 22Greater than or equal to.
HAS_ALL_OF = 32Has all of the specified values (multi-value columns).
HAS_ANY_OF = 30Has any of the specified values (multi-value columns).
HAS_NONE_OF = 31Has none of the specified values (multi-value columns).
IS_BLANK = 11Is blank.
IS_CHECKED = 17Is checked (for checkbox columns).
IS_DATE = 15Is a date.
IS_NOT_BLANK = 12Is not blank.
IS_NOT_DATE = 16Is not a date.
IS_NOT_NUMBER = 14Is not a number.
IS_NOT_ONE_OF = 20Is not one of the specified values.
IS_NUMBER = 13Is a number.
IS_ONE_OF = 19Is one of the specified values.
IS_UNCHECKED = 18Is unchecked (for checkbox columns).
LAST_N_DAYS = 9Is in the last N days.
LESS_THAN = 3Less than.
LESS_THAN_OR_EQUAL = 21Less than or equal to.
MULTI_IS_EQUAL = 34Multi-value is equal to.
MULTI_IS_NOT_EQUAL = 35Multi-value is not equal to.
NEXT_N_DAYS = 10Is in the next N days.
NOT_ALL_OF = 33Does not have all of the specified values (multi-value columns).
NOT_BETWEEN = 24Not between two values.
NOT_EQUAL = 1Not equal to.
NOT_FUTURE = 27Is not in the future.
NOT_LAST_N_DAYS = 28Is not in the last N days.
NOT_NEXT_N_DAYS = 29Is not in the next N days.
NOT_PAST = 26Is not in the past.
NOT_TODAY = 25Is not today.
PAST = 7Is in the past.
TODAY = 6Is today.