AND(ISCHANGED(SBQQ__Status__c),
ISPICKVAL( PRIORVALUE(SBQQ__Status__c), 'Draft'),
ISPICKVAL( SBQQ__Status__c ,'In Review'))
Each function is showing me the same error example -/- PRIORVALUE may not be used in this type of formula
5 respostas
Hi Rohan,
Where are you using the formula?Try below
AND(
ISCHANGED(SBQQ__Status__c),
TEXT(PRIORVALUE(SBQQ__Status__c)) = 'Draft',
TEXT(SBQQ__Status__c) = 'In Review'
)