function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Paula Vogler 27Paula Vogler 27 

How to add to an existing formula for a flow?

I have a simple formula that initiates a flow when a checkbox field is edited. 
This is what it looks like:
ISCHANGED(  {!$Record.Top_10__c}  )

I need to add to it so that it fires if that field is changed OR another (picklist) field named status is changed. 

I tried a couple things but my syntax doesnt seem to work. I need to know the correct operator/function for a pickist AND how to make it an OR. 
Any help appreciated. 
Thanks,

Best Answer chosen by Paula Vogler 27
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Paula,

Can you try the below formula.
 
OR (ISCHANGED(  {!$Record.Top_10__c}  ) , ISCHANGED( {!$Record.Status__c} )) 

Replace the Status__c with the API name as it is in your org,

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,

All Answers

Sai PraveenSai Praveen (Salesforce Developers) 
Hi Paula,

Can you try the below formula.
 
OR (ISCHANGED(  {!$Record.Top_10__c}  ) , ISCHANGED( {!$Record.Status__c} )) 

Replace the Status__c with the API name as it is in your org,

Let me know if you face any issues.

If this solution helps, Please mark it as best answer.

Thanks,
This was selected as the best answer
Paula Vogler 27Paula Vogler 27
Thanks Sai, that worked perfectly!