I was trying to convert a process Builder actions to flow where i was using the same formula from process builder into a Variable of formula Type but that was not actually taking the formula && throwing syntax error, Now i need to use that formula in decision making in flow can someone suggest other way to check on a field whether its edited or updated in Decision making element
Thanks in advance!
답변 4개
You could create a formual returning boolean:
OR(
ISCHANGED({!$Record.Example__c})
AND(NOT(ISNEW()), ISBLANK(TEXT(PRIORVALUE({!$Record.Example__c}))), ISBLANK(TEXT({!$Record.Status__c}))),
AND(ISNEW(), ISBLANK(TEXT({!$Record.Example__c}))))
You can then create a decision and in the outcome go with FormulaVar Equals $GlobalConstant.True