Hello, everyone.
I've a form where users are entering data, and one of the fields is an election date, where the date the user enters must be >= 5 years in the future. I am not sure how access accomplishes this.
I thought of a validation rule where [ElectionDate] >= DateAdd("yyyy", 5, Date())
However that did not work. Anyone have any ideas?
Thanks.
I've a form where users are entering data, and one of the fields is an election date, where the date the user enters must be >= 5 years in the future. I am not sure how access accomplishes this.
I thought of a validation rule where [ElectionDate] >= DateAdd("yyyy", 5, Date())
However that did not work. Anyone have any ideas?
Thanks.
Comment