You need to sign in to do that
Don't have an account?

Is Rich text area supported in ischanged() in validation rule?
We have a validation rule that uses ischanged on a long text field and on a rich text field. when either one of them is changed, the validation rule should fire. It appears that the ischanged() doesnt work with rich text field in validation rule and the rul fires even when the field isnt changed? Has anyone experienced this issue?
Instead of using ISCHANGED(), give it a shot using the LEN() function. LEN() function definitely works on rich text area fields. So give something like the below a shot !
Kindly mark it as an answer if that works !
LEN(Rich_Text_field__c) <> LEN(PRIORVALUE(Rich_Text_field__c)) ALWAYS evaluated to true for me.
I could never get this to work