To calculate someone's age - create an expression in a
query using the following formula:
=DateDiff("y",[DateofBirth], Date()])/365
This will calculate the persons date of birth and the date
now (today) and give you their age. You will likely have
to format the field to be numeric.
This will be off a few days around the person's birthday, especially
for older folks - a year has 366 days in leap years, not 365.
A more reliable expression is:
=DateDiff("yyyy", [DateOfBirth], Date()) - IIF(Format([DateOfBirth],
"mmdd") > Format(Date(), "mmdd"), 1, 0)
This calculates the whole years, and then subtracts a year if the
person's birthday has not yet arrived.