Skip to content

Plan Icon Creator

Logic#

The Logic element allows combining multiple conditions. For example:

If Assessment selection is "Yes" and if Text contains "Problem".

You can also use an Expression instead of Conditions. The expression allows more complex options like:

  • (element_1_id EQ 1 OR element_2_id CO 2) AND element_3_id NE 3
  • element_1_id GT 12:00, where element_1_id is Date/Time element
  • element_1_id EQ WED, where element_1_id is Date/Time element

Expression operators:

  • Equals: EQ, EQUALS, =
  • Not equals: NE, NOT_EQUALS, !=
  • Greater than: GT, GREATER_THAN, >
  • Greater than equals: GTE, GREATER_THAN_EQUALS, >=
  • Less than: LT, LESS_THAN, <
  • Less than equals: LTE, LESS_THAN_EQUALS, <=
  • Contains: CO, CONTAINS
  • Not contains: NC, NOT_CONTAINS

See UI Designer