Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip

So, use formulas in Flow Triggers IF you can be sure they are stable formulas and be very careful to test what happens when the formula value changes!

Formula Templates

Not Changed

Code Block
{!$Record.Field__c} = {!$Record__Prior.Field__c}

IsChanged

Code Block
{!$Record.Field__c} <> {!$Record__Prior.Field__c}

IsChanged and Was Blank

Code Block
AND(NOT(ISBLANK({!$Record.Field__c})),ISBLANK({!$Record__Prior.Field__c}))

It seems weird to use IS in Prior context, not WAS.