Basics: Data Types: ID

A unique identifier for an object such as a product, an order, a customer, etc.


Operators

Smart Tag supports the following operators for fields and values that are of ID type.


is equal to

Returns true if field value is equal to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is equal to 3618320042 true
3618320100 false
3618320100 is equal to 3618320042 false
3618320100 true

is not equal to

Evaluates to true if field value is not equal to to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is not equal to 3618320042 false
3618320100 true
3618320100 is not equal to 3618320042 true
3618320100 false

is greater than

Evaluates to true if field value is greater than to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is greater than 3618320042 false
3618320100 false
3618320100 is greater than 3618320042 true
3618320100 false

is greater than or equal

Evaluates to true if field value is greater than or equal to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is greater than or equal 3618320042 true
3618320100 false
3618320100 is greater than or equal 3618320042 true
3618320100 true

is lesser than

Evaluates to true if field value is lesser than to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is lesser than 3618320042 false
3618320100 true
3618320100 is lesser than 3618320042 false
3618320100 false

is lesser than or equal

Evaluates to true if field value is lesser than or equal to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is lesser than or equal 3618320042 true
3618320100 true
3618320100 is lesser than or equal 3618320042 false
3618320100 true

is within

Evaluates to true if field value is within to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is within range > [3618320042 - 3618320100] true
[3618320042 - 3618320042] true
[3618320100 - 3618320100] false
3618320100 is within range > [3618320042 - 3618320100] true
[3618320042 - 3618320042] false
[3618320100 - 3618320100] true

is not within

Evaluates to true if field value is not within to the input value.

Examples
Field Field Value(s) Operator   Value(s) Result
ID 3618320042 is not within range > [3618320042 - 3618320100] false
[3618320042 - 3618320042] false
[3618320100 - 3618320100] true
3618320100 is not within range > [3618320042 - 3618320100] false
[3618320042 - 3618320042] true
[3618320100 - 3618320100] false