You need to sign in to do that
Don't have an account?
Kavita
Need help with a validation rule
Can someone help me write a validation rule for this scenario please? I have tried various versions but they're just not working out.
I have a picklist called "Term" and the values are 12,36 and 48
I have a number field called Qty.
I need a validation rule that says if value=12 then qty should be greater than 1 but less than 12.
Thanks in advance
AND(ISPICKVAL(Term__c,"12"),OR(Qty__c < 2,Qty__c > 11))
All Answers
AND(ISPICKVAL(Term__c,"12"),OR(Qty__c < 2,Qty__c > 11))
awesome. Thanks so much.