Skip to main content

Hi Guys,

 

I have been working on a validation rule today and am wondering if their is a easy quick answer to what i am trying to do, i am writing a validation rule that  when the pick list value = "yes" then another field which is a Date/Time field called Effective_Date__c becomes mandatory, i was thinking it would go somthing like my validation below but am not sure if their is a value that links to Date/Time  fields, any help would be great guys

 

Thanks

 

James

 

ISPICKVAL(Postcode_Streaming__c, "Yes") &&

 

NOT Effective_Date__c
4 个回答
  1. 2010年12月6日 16:14
    Try this.

     

    ISPICKVAL(Postcode_Streaming__c, "Yes") &&

    Effective_Date__c = ""

0/9000