Question about date Validation

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • NathanW
    New Member
    • Sep 2007
    • 1

    Question about date Validation

    Hello Experts in this field of work, i would like to know which validation rule to use when i want the rule to ensure that the date entered is at least 18 years before the current date
  • damonreid
    Recognized Expert New Member
    • Jul 2007
    • 114

    #2
    [code=vb]if fieldname <= date()-6574 then
    fieldname =""
    else
    end if[/code]
    Try this

    Comment

    Working...