Skip to main content
I havent quote goto the logic behind validation rules yet5 so tend to struglle with vcreating them hence this question 

 

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
  1. Oct 30, 2017, 1:19 PM

    James, give this a shot:

    AND(

      NOT(ISBLANK(Credit_No__c)),

    ISBLANK(TEXT(Discarded_Stock__c))

    )

     

    Copy paste and you should be golden.
0/9000