Calculate Age From Birthdate

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

I have a birthdate listed in a column and I want to calculate the age of the person.

Any help will be appreciated

Sandy
 
Try entering this expression in your query:

=IIf(IsNull([DOB]),"
",Year(Now())-Year([DOB])+(DateSerial(Year(Now()),Month([DOB]),Day([DOB]))>N
ow()))
 

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

Back
Top