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
alvatsealvatse 

Workflow to trigger email alert when checkbox selection changes

Hi, we have 2 checkboxes: Personal and Master in one of our custom objects. I need to build a Workflow to trigger an email alert when it goes from this scenario:

The Personal box is checked at time of record creation or checked currently, but the Master box is not checked

To this scenario:

Keeping the Personal box checked, now the User also checks the 'Master' box.

 

Can anyone advise the easiest way to build such workflow with formula? Thanks.

 

Steve :-/Steve :-/

Are you looking for something like this?

 

Evaluation Criteria:  Every time a record is created or edited  


 

AND(
Checkbox_1__c,
Checkbox_2__c,
Checkbox_2__c <> PRIORVALUE(Checkbox_2__c))

 

 

alvatsealvatse

Hi Steve, yes. Thank you very much!

Steve :-/Steve :-/

No problem, you owe me a beer ;-p