
If Sales Type = blank OR Sales Type = Other, then the reason field must be populated.. Sales Type is a picklist field.
Thanks.
2 件の回答
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.