Validation Rule on Multi-Select Picklist to only allow one value

multi-selectpicklistvalidation-rule

I need a validation rule on a multi-select picklist field that if a specific value is selected, no others can be selected.

Right now I have:

Includes(Multi_Select_Field__c, "Value1") 

But this throws the error when that specific value is selected, I want it to throw if that value is selected and the user tries adding additional ones. Hope that makes sense. Thanks!

Best Answer

Try this:

AND(Includes(Multi_Select_Field__c, "Value1"), PICKLISTCOUNT(Multi_Select_Field__c) > 1 )

Related Topic