Calculate Age From Birthdate

S

Sandy

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
 
C

Con Giacomini

Try entering this expression in your query:

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