Skip to main content

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 Antworten
  1. 14. Dez. 2021, 10:12

    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

0/9000