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
Operations 58Operations 58 

Validation Rule for Picklist dependency

I'm trying to make a validation rule that only allows the "Service Level" picklist to show up if the account stage = Active
Atla Satheesh 8Atla Satheesh 8
Hi ,

You can restrict by using field dependency. you cannot restrict picklist values display by uinsg validation rule


If you need  a validation rule to select "Service Level" picklist among al;l pick list values when the account stage is Active.


AND(Ispickval(Stage,'Active'), NOT(ISPICKVAL(2nd fieldcondition, "Service Level")))




 
Raj VakatiRaj Vakati
Use this validation 
 
AND (
    
Text(stage) = 'Active',
    TEXT(Service_level__c)='Value'
    )