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

Checkbox and Picklist Validation Rule
Hi Everyone!
I am trying to create a validation rule that makes several picklist fields mandatory when a checkbox field is selected.
Thanks in advance!
I am trying to create a validation rule that makes several picklist fields mandatory when a checkbox field is selected.
Thanks in advance!
Add condition like: Important :
If this is what you were looking for then please mark it as a "SOLUTION" or You can Click on the "Like" Button if this was beneficial for you.
AND(Field_Deployment__c ==TRUE, ISBLANK(TEXT( Field_Engineer__c )))
This is the error kicking bak=ck:
Error: Field Field_Engineer__c is a multi-select picklist field. Multi-select picklist fields are only supported in certain functions
Try these validation rule:-
AND(Field_Deployment__c ==TRUE, ISBLANK( Field_Engineer__c ))
Thanks
Anil.B
Try this:-
AND(Field_Deployment__c ==TRUE, ISPICKVAL(Field_Engineer__c, ''))