You need to sign in to do that
Don't have an account?
If picklist value is selected make other picklist value fields required
Trying to create a validation where Equipment Feedback is selected in the VOC Description picklist field, and then make the following picklist fields required (with any value).
AND(ISPickval( VOC_Description__c ,'Equipment Feedback'),
(Ispickval(Brand__c ,"")
((Ispickval(Condition__c,"")
(Ispickval(Model__c,"")
(Ispickval(Product_Family__c,"")
(Ispickval(Brand__c,"")
(Ispickval(Product_Type__c,"")))))))
AND(ISPickval( VOC_Description__c ,'Equipment Feedback'),
(Ispickval(Brand__c ,"")
((Ispickval(Condition__c,"")
(Ispickval(Model__c,"")
(Ispickval(Product_Family__c,"")
(Ispickval(Brand__c,"")
(Ispickval(Product_Type__c,"")))))))
Try this one,
AND(ISPICKVAL( VOC_Description__c ,"Equipment Feedback"),
ISBLANK(TEXT(Brand__c)),
ISBLANK(TEXT(Condition__c)),
ISBLANK(TEXT(Model__c)),
ISBLANK(TEXT(Product_Family__c)),
ISBLANK(TEXT(Product_Type__c)))
Hope this helps!
Please mark it as solved if my reply was helpful. It will make it available for other as the proper solution.
Thanks,
Kamala
Sweet Potato Tec.
All Answers
Try this one,
AND(ISPICKVAL( VOC_Description__c ,'Equipment Feedback'),
ISBLANK(ISPICKVAL(Brand__c)),
ISBLANK(ISPICKVAL(Condition__c)),
ISBLANK(ISPICKVAL(Model__c)),
ISBLANK(ISPICKVAL(Product_Family__c)),
ISBLANK(ISPICKVAL(Product_Type__c)))
Hope this helps!
Please mark it as solved if my reply was helpful. It will make it available for other as the proper solution.
Thanks,
Kamala
Sweet Potato Tec.
Try this one,
AND(ISPICKVAL( VOC_Description__c ,"Equipment Feedback"),
ISBLANK(TEXT(Brand__c)),
ISBLANK(TEXT(Condition__c)),
ISBLANK(TEXT(Model__c)),
ISBLANK(TEXT(Product_Family__c)),
ISBLANK(TEXT(Product_Type__c)))
Hope this helps!
Please mark it as solved if my reply was helpful. It will make it available for other as the proper solution.
Thanks,
Kamala
Sweet Potato Tec.