T
Turtle
Can anyone tell me how to get Access to calculate the age
of a person from their date of birth? Thanks in advance!
of a person from their date of birth? Thanks in advance!
DATE() which gives you the current date. Then you do a-----Original Message-----
Can anyone tell me how to get Access to calculate the age
of a person from their date of birth? Thanks in advance!
.
You need to make a query using the DOB and the function
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.