Announcement

Collapse
No announcement yet.

Boolean & Formula with IfThenElse

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

  • Boolean & Formula with IfThenElse

    Hello All. Can someone assist with this formula below:

    ifThenElse(
    status == "Reconciled Transaction",
    entity\setAttribute('reconciled', true),
    entity\setAttribute('reconciled', false)
    );

    "reconciled" is a boolean field. this doesn't work for me. How should I set correctly to check the boolean if this condition is true or make it uncheck if the condition isn't met?

  • #2
    Hello,

    Try this:

    PHP Code:
    ifThenElse(
        
    status == "Reconciled Transaction",
        
    reconciled true,
        
    reconciled false
    ); 
    CEO & Founder of Eblasoft.
    Professional EspoCRM development & extensions.

    Comment


    • dodom2
      dodom2 commented
      Editing a comment
      Thank you Eymen however I tried this already as well and it doesn't work.

    • Maximus
      Maximus commented
      Editing a comment
      What if:
      PHP Code:
      ifThenElse(
          
      status == "Reconciled Transaction",
          
      reconciled 1,
          
      reconciled 0
      ); 

  • #3
    Hello

    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

    Comment


    • dodom2
      dodom2 commented
      Editing a comment
      Thank you Peter however I had no luck with your post. I tried that before posting here but couldn't really make sense of the resolution.

  • #4
    Try to make ifThen function:

    ifThen(
    status == 'Reconciled Transaction',
    entity\setAttribute('reconciled', true)
    );

    and give the boolean a default of false (in field configuration of entity). That means, that the field is alway false by default and only true, when condition of ifThen is met.

    Comment


    • dodom2
      dodom2 commented
      Editing a comment
      No luck

  • #5
    I tested this here and it works

    Code:
    ifThenElse(
    status == 'Reconciled Transaction',
    entity\setAttribute('reconciled', true),
    entity\setAttribute('reconciled', false)
    );
    Only to be sure: Did you recalculate formula in your entity? Sometimes rebuild helps as well as purging the browser cache.

    The formula above is correct.

    Comment

    Working...
    X