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
Patti PaganoPatti Pagano 

Validation Rule: Dont allow specific values in a muliti picklist to be chosen together.

I have a multi pick list which has A, B, C, D.  I never want my users to be able to select A & B togher.  Stuck on this rule and cant get it to work.
Prateek Singh SengarPrateek Singh Sengar
Hi,
Please try something like
 
IF(AND(
INCLUDES(Fieldname, "A"),
INCLUDES(Fieldname, "B")), TRUE, FALSE)

 
SalesFORCE_enFORCErSalesFORCE_enFORCEr
Write a validation rule with this formula
AND(
INCLUDES(Fieldname, "A"),
INCLUDES(Fieldname, "B")
)