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)Cevap
- BISBLANK(Account_Status__c)
- CPRIORVALUE(Account_Status__c)
- DINCLUDES(Account_Status__c, 'Updated')
Cevap
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.
Adım Adım Çözüm
Anahtar Kavram
Detecting field value modifications in validation rules