You need to sign in to do that
Don't have an account?
Carol McConnell
Validation rule on multi select picklist
I'm trying to figure out what the formula would be to require one picklist be selected if a certain item in another multi select picklist field is chosen.
I.E. If Project type which is a multi select picklist contain PG then the PG type picklist field should be required.
Thanks,
I.E. If Project type which is a multi select picklist contain PG then the PG type picklist field should be required.
Thanks,
Try Below Validation I've Made Changes Please Mark It As Best Answer If It Helps
Thank You
All Answers
Formula Operators and Functions I–Z (salesforce.com) (https://help.salesforce.com/s/articleView?id=sf.customize_functions_i_z.htm&type=5)
Use:
INCLUDES(multiselect_picklist_field, text_literal) and replace multiselect_picklist_field with the merge field name for the multi-select picklist; and replace text_literal with the multi-select picklist value you want to match in quotes.
Examples:
INCLUDES(Hobbies__c, "Golf") returns TRUE if one of the selected values in the Hobbies custom multi-select picklist field is Golf.
So in your case:
INCLUDES(Project_Type__c, "PG")
Regards
Andrew
Try Below Validation Please Mark It As Best Answer If It Helps
Thank You!
Try Below Validation I've Made Changes Please Mark It As Best Answer If It Helps
Thank You
Thank you so much.