How To Calculate Age from Date of Birth

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

I saw there were messages posted on this topic but they're no longer
available per my Outlook list connection.

Can someone repost this solution?

Chris
 
Borrowed from MVP John Vinson:

Age: DateDiff("yyyy", [Birthdate], Date()) - IIF(Format([Birthdate],
"mmdd") > Format(Date(), "mmdd"), 1, 0)
 
Back
Top