You need to sign in to do that
Don't have an account?

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!
Hi nick
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
Hi nick
Make your validation rule to this and Specify a message..!
If this makes your solution , mark this as a solution for other's reference..!
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