Skip to main content
Olivia Forde (Lifes2good) 님이 #Data Management에 질문했습니다
Can I write a validation rule to stop users picking certain dates
답변 5개
  1. 2015년 11월 5일 오후 1: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