Skip to main content
Can I write a validation rule to stop users picking certain dates
5 respostas
  1. 5 de nov. de 2015, 13:52

    Olivia, you can use and customize something like the following:

    OR

    (

    Date_Field__c = DATE(2015,10,1),

    Date_Field__c = DATE(2015,12,10),

    Date_Field__c = DATE(2015,5,5),

    Date_Field__c = DATE(2015,11,9),

    Date_Field__c = DATE(2015,4,28)

    )

    The date withing the DATE function should be in the yyyy,mm,dd format.

0/9000