Announcement

Collapse
No announcement yet.

Entity Formula Subtraction - Not working - even on Demo site. Bug?

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

  • Entity Formula Subtraction - Not working - even on Demo site. Bug?

    Entity Formula Subtraction - Not working - even on Demo site. Bug?
    Code:
    // Enter '0' if vaule NULL
    ifThen(profit == null,profit == '0');
    ifThen(financeamt == null,financeamt == '0');
    ifThen(phonesystemcommission == null,phonesystemcommission == '0');
    
    // Calulate Profit
    ifThenElse(profit == '0', profit == (financeamt - phonesystemcommission),'20000');
    Last edited by khopper; 04-05-2020, 04:42 PM.

  • #2
    Hello,
    typo error i think : assignment is "=" => one =
    double = (==) is for comparaison.

    Comment

    Working...
    X