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
HNT_NeoHNT_Neo 

Checkbox to trigger if true or false

Hello, 

I have rule that should trigger a field update, but my rule is only firing off when the checkbox is unchecked. What can I do to ensure that if the box is unchecked and gets checked or if the box is already checked and gets unchecked, it will trigger my field update. 

Here is my formula: 
 
IF( Maintenance__c,FALSE,TRUE)
The above rule only triggers when the box is unchecked 
 
Best Answer chosen by HNT_Neo
SalesFORCE_enFORCErSalesFORCE_enFORCEr
Change the workflow's evaluation criteria to "created, and every time it's edited"

All Answers

SalesFORCE_enFORCErSalesFORCE_enFORCEr
You can use the
ISCHANGED(Maintenance__c)

function in the formula.
HNT_NeoHNT_Neo
I receive this error message: 
 
Error: Function ISCHANGED may not be used in this type of formula

 
SalesFORCE_enFORCErSalesFORCE_enFORCEr
Change the workflow's evaluation criteria to "created, and every time it's edited"
This was selected as the best answer
HNT_NeoHNT_Neo
That was it plus the formula you suggested 
ISCHANGED(Maintenance__c)

Than you!