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
Deepak Biloriya 1Deepak Biloriya 1 

how to apply validation rule for picklist

VinayVinay (Salesforce Developers) 
Hi Deepak,

You can use below format for OR and AND condition.
AND(
ISPICKVAL(Picklist field 1, "lov value"),
ISPICKVAL(Picklist field 2, "lov value")
)

=========

OR(
ISPICKVAL(Picklist field 1, "lov value"), ISPICKVAL(Picklist field 2, "lov value")
)


https://www.salesforceben.com/validation-rules-in-salesforce/

​​​​​​​Please mark as Best Answer if above information was helpful.

Thanks,