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
nickfs92840nickfs92840 

Picklist (Multi-Select) Validation Rule

Is it possible to select a Picklist (Multi-Select) list item that can make another field required? 

 

Picklist (Multi-Select) API Name: Board__c

Picklist (Multi-Select) list values: Group, Single, Custom

 

Field API Name: Guest__c

 

So if, Group is selected from the Board__c picklist, Guest__c field must be required when saving a record. 

 

I'm seeking a validation rule that will execute this. Thanks!

 

 

 

Best Answer chosen by Admin (Salesforce Developers) 
harsha__charsha__c

Hi nick

 

INCLUDES(Board__c, 'Group') && Guest__c = null

 Make your validation rule to this and Specify a message..!

 

If this makes your solution , mark this as a solution for other's reference..!

 

 

All Answers

harsha__charsha__c

Hi nick

 

INCLUDES(Board__c, 'Group') && Guest__c = null

 Make your validation rule to this and Specify a message..!

 

If this makes your solution , mark this as a solution for other's reference..!

 

 

This was selected as the best answer
RArunrajRArunraj

Nick,

 

Can  you try the below Formula

 

IF(INCLUDES(Board__c, 'Group'),ISPICKVAL(Guest__c,''),FALSE)

 

Please mark this as solution, if the above formula solves your problem

 

Thanks,

Arunraj