Skip to main content
Need help on a validation rule if the following conditions are not met.

 

If Sales Type = blank OR Sales Type = Other, then the reason field must be populated.. Sales Type is a picklist field.

 

Thanks.
2 件の回答
  1. 2012年12月23日 7:57
    Hello,

     

    Try something like this..

     

    (TEXT(Sales_Type__c)="" || TEXT( Sales_Type__c )="Other") && 

     

    Reason__c =""

     

    Replace the field names with the actual names that you have inn your org.

     

    Hope this works.
0/9000