Years/Months between 2 dates

BoroLee

Registered User.
Local time
Today, 20:57
Joined
Aug 30, 2000
Messages
90
I have a database which has start dates off all employees in it.

i need to work out the number of years and months between this date, and today's date.

Any help gratefully accepted.

Thanks,
Lee.
 
Check out the datediff function.

Fuga.
 
Something like (from the debug window):

myOld = #4/1/93#
? int(datediff("m", myOld, date())/12) & ":" & format(datediff("m", myOld, date()) mod 12, "00")
9:06
 

Users who are viewing this thread

Back
Top Bottom