How to convert a birthdate to age using a query

D

Dori

Is it possible to build a query that converts a birthdate to current age?
Access 2000

Thanks.
 
R

Rick B

Age: DateDiff("yyyy",[DOB],DAte()) -
IIF(Format([DOB],"mmdd")>Format(Date()."mmdd"),1,0)
 
Top