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

Validation Rule on Picklist
Hi Fnds.. plz help me out this
Q:: I have picklist(product_type__c) having Lov's of(type1,type2,type3,type4),i have another field like description__c(text).
when i select the type1,descripton is not mandatory,but when i select otherthan type1,description is mandatory filed when click on save button it show msg like description is mandatroy
Q:: I have picklist(product_type__c) having Lov's of(type1,type2,type3,type4),i have another field like description__c(text).
when i select the type1,descripton is not mandatory,but when i select otherthan type1,description is mandatory filed when click on save button it show msg like description is mandatroy
Try this:
AND( NOT (ISPICKVAL(product_type__c, 'type1')), ISBLANK(description__c) )
Thanks,
Pratik
All Answers
Try this:
AND( NOT (ISPICKVAL(product_type__c, 'type1')), ISBLANK(description__c) )
Thanks,
Pratik
Thanks,
Pratik