Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ConditionsDescription
Is EmptyPulls data with a null value
Is Not EmptyPulls data with a value
Is BlankPulls data with an empty string
Is Not BlankPulls data with a non-empty string
EqualsPulls data that is equal to only one specific value
Not EqualsPulls data that is not equal to one specific value
ContainsPulls data where the field's value matches the input; functions like " ilike '%input%' "
Not containsDoes not pull Pulls data where the field's value matches does not match the input; functions like" not ilike '%input%' "
Start WithPulls data where the first part of the field's value matches the input; functions like " ilike 'input%' "
End WithPulls data where the last part of the field's value matches the input; functions like " ilike '%input' "
INPulls data that is equal to any value in the list; allows choosing a list of values
Not INPulls data that is not equal to any value in the list; allows choosing a list of values
MatchUses regular expression; functions similarly to "Contains"
Not MatchUses regular expression; functions similarly to "Not contains"

...