Skip to main content
This function is showing me Error: Function ISCHANGED may not be used in this type of formula , I had put multiple other logical operations in same AND like

 

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
  1. 31 de jul. de 2018, 04:33
    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'

    )

     

     
0/9000