
Any help is greated appreciated!
AND (
ISCHANGED (Amount__c ),
OR (
ISBLANK (Amount__c),
Amount__c = 0,
ABS(PRIORVALUE(Amount__c) -
Amount__c) = 250000
)
)
2 answers
AND (
ISCHANGED (Amount__c ),
OR(
ISPICKVAL(Stage, 'Sold'),
ISPICKVAL(Stage, 'Verbally Sold'),
ISPICKVAL(Stage, 'Contracted'),
ISPICKVAL(Stage, 'Renewal')
)
OR (
ISBLANK (Amount__c),
Amount__c = 0,
ABS(PRIORVALUE(Amount__c) -
Amount__c) = 250000
)
)
Give this a try.