How to create queries that will calculate age from date of birth

J

John Spencer

That blank space for messages helps to determine exactly what you want.
Please try to fill it in with some details.

Age: DateDiff("yyyy",[DOB],Date()) + Cint(Format([DOB],"mmdd")>
Format(Date(),"mmdd"))

A quick and dirty version that is fairly accurate
Age: Int(([Dob]-Date())/365.25)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top