An administrator needs to ensure that a validation rule evaluates only when a user modifies the existing value of the Account Status field on an Account record. Which formula function should the administrator include in the validation rule formula to check whether the field value was updated during the save operation?
- ISCHANGED(Account_Status__c)Answer
- BISBLANK(Account_Status__c)
- CPRIORVALUE(Account_Status__c)
- DINCLUDES(Account_Status__c, 'Updated')
Answer
The ISCHANGED function evaluates whether a field's value has changed during the record update transaction.
The formula function ISCHANGED returns true if the field value being evaluated has changed compared to the value currently stored in the database.
Step-by-Step Solution
Key Concept
Detecting field value modifications in validation rules