Date Return Value
I’m using Access 97. I need to show the age of the individual. In a query I have the Date of Birth (DOB) and Current Date, in ddmmyy. I have shown the formula below(Age. However, there seems to be one extra year that is added. Ei: DOB = 1/1/80; Current date = 10/18/01, shouldbe 35 years of age. In my original formula I did not divide by 365 which the resulted was 13074. I then changed my formula to divide by 365. The results come to 36, standard number format. Can someone provide a better formula? Thank you.
DOB
Current Date: Date()
Age: Sum([Current Date]-[DOB])/365
I’m using Access 97. I need to show the age of the individual. In a query I have the Date of Birth (DOB) and Current Date, in ddmmyy. I have shown the formula below(Age. However, there seems to be one extra year that is added. Ei: DOB = 1/1/80; Current date = 10/18/01, shouldbe 35 years of age. In my original formula I did not divide by 365 which the resulted was 13074. I then changed my formula to divide by 365. The results come to 36, standard number format. Can someone provide a better formula? Thank you.
DOB
Current Date: Date()
Age: Sum([Current Date]-[DOB])/365