Match on a variable
Matching a variable lets you check the value of your user variables as part of the criteria of your Property Manager rules.
How to
-
Click Add Match. A new match criterion appears.
-
Select a variable from the list. Select the user-defined variable from the list.
-
Select the comparison operator from the list.
-
Enter one or more values into the field, depending on the match operator.
- If you choose is or is not operator, you can enter a single value to match against the variable.
The match value now also supports variable expression syntax, so you can compare two variables.
- If you choose is one of or is not one of match operator, you can enter multiple values separated with space.
Example
You selected is one of or is not one of match operator. Matching on abc def
will be true if the variable value is either abc
or def
. If you want to match on a value that includes the actual space character, then you need to escape it, like this abc\ def
which will be true if the variable value is exactly abc def
. You can also use the reserved EMPTY_STRING
value to match for empty or blank values. For instance, matching a variable with abc def EMPTY_STRING
will be true if the variable value is abc
, def
or ""
(blank).
Updated over 3 years ago