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()))
 
Back
Top