Announcement

Collapse
No announcement yet.

Boolean Field

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Boolean Field

    Hello,
    what is the best way to query a Boolean field with a formula?
    field name =='1';
    field name == 1;
    field name != null;
    field name != '';

    Peter

  • #2
    field name

    ifThen(field name, action)

    Comment


    • #3

      Thank you.
      Another question about action in ifThen/Else. Can multiple actions be defined? There is only one action in the examples in the documentation.

      Comment


      • #4
        yes, separated with ';'
        ifThenElse(condition, actionTrue1; actionTrue2; ... actionTrueN, actionFalse1; actionFalse2; ... actionFalseN)

        Comment


        • esendino
          esendino commented
          Editing a comment
          This should be included in the documentation. IMHO

        • rodrigocoelho
          rodrigocoelho commented
          Editing a comment
          Yes, this should be on manual.
      Working...
      X