calculation

Q

Queent

I need some help, can anyone tell me how to do a calculation in access to
show person must be 14 years and over
 
A

Allen Browne

How about a query, and in the Criteria row under the BirthDate field, enter:
<= DateAdd("yyyy", -14, Date())
 
Top