Age

damsel

Registered User.
Local time
Today, 09:31
Joined
Jun 21, 2002
Messages
14
My database is for kindergarten. Is there a way that I can calculate the kids' age from their date of birth field?
I have tried using the datediff function, however I want it to be exact like 1.3 (1 year and 3 months old). Many thanks :)
 
Here's one way:

age: Format(Date()-[DOB],"yy mm")

it will return 05 07 for 5years 7months
 

Users who are viewing this thread

Back
Top Bottom