my rule is
IF(NOT(BLANKVALUE(Credit_No__c))),
(ISPICKVAL(Discarded_Stock__c,""))
What this should say in long hnad is
If the Credit_No__c field contains anything then you need to select a pick list value (YES or No) for Discarded_Stock__c
Thanks in advance
3 answers
James, give this a shot:
AND(
NOT(ISBLANK(Credit_No__c)),
ISBLANK(TEXT(Discarded_Stock__c))
)
Copy paste and you should be golden.