Here's what I have:
NOT(ISPICKVAL(Picklist_Field, "X"))&& ISCHANGED(Picklist_Field)
How do I change my formula to look at the picklist field's original value to evaluate?
답변 5개
Almost got it! Just need to add one thing here: AND(
ISCHANGED(Picklist_Field__c),
NOT(ISPICKVAL(PRIORVALUE(Picklist_Field__c), "X")))