G
Guest
How to compute two date equal?year?month?day?
Example:
#2006-02-23# - #1990-01-24# =16 year 0 month 29 day
Example:
#2006-02-23# - #1990-01-24# =16 year 0 month 29 day
Rick B said:I have one that shows years and months. You could modify it slightly to
meet your needs...
=DateDiff("m",[Spousebday],Date())\12 & " yrs. " &
(DateDiff("m",[spousebday],Date()) Mod 12 & " mts.")
This uses the field "Spousebday" and compares it to the current date. You
could use whatever field values you'd like. If you don't want to subtract
from the current date, then you'd need to replace "DATE()"" with your
field name.
--
Rick B
Lee said:How to compute two date equal?year?month?day?
Example:
#2006-02-23# - #1990-01-24# =16 year 0 month 29 day