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?
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?
Comment