You need to sign in to do that
Don't have an account?
Using Validation for Conditional Requirement
New to Validation Rules! Need some help.... I want to create a conditional requirement on a field using Validation. When Account "Type" Contains "Customer", the "Parent Account" field becomes required. I'm struggling with the CONTAINS function. Can anyone help?
All Answers
In order to use "Contains" function with a picklist field, you'll have to convert it to a text first. Like so:
CONTAINS(TEXT(Type),'Customer')
Try this validation rule :-
CONTAINS(text(Type),'Customer')&& ISBLANK(Parent.Name)
Thanks
Anil.B