Skip to main content

Hello there, 

I need some help writing a formula for a validation rule. 

 

We have a checkbox named: OUTBOUND_SAME_DAY__c

 

If this is ticked and they try to enter a returns consignment number in: Returns_Consignment_Number__c

 

It cannot be entered if: INBOUND_SAME_DAY__c is not checked. 

 

Please can someone help me to write this formula. 

 

 

Thank you, 

 

Hayley

2 件の回答
  1. 2017年5月5日 13:20
    Hi Hayley,

     

    Please try the below

    AND(

    OUTBOUND_SAME_DAY__c = TRUE,

    NOT(ISBLANK(Returns_Consignment_Number__c)),

    INBOUND_SAME_DAY__c = FALSE

    )

     

     
0/9000