function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Praveen Medishetty07819958721518091Praveen Medishetty07819958721518091 

null

HI, How to write the below validation rule:
If SLA is 'GOLD' then ANNUAL REVENUE should be greater than 10k.
@anilbathula@@anilbathula@
Hi Praveen

Try this validation
 
Annualrevenue<=10000 && ISCHANGED(SLA__c)&&ISPICKVAL(SLA__c,'Gold')

Thanks
Anil.B
Praveen Medishetty07819958721518091Praveen Medishetty07819958721518091
Thankyou Anil