Age from birthday

  • Thread starter Thread starter Hildo
  • Start date Start date
H

Hildo

This shouyld be easy, but I can't seem to figure it out.

I have the birthday of a client and I need his age in
years.

Somebody has a formula?

TAI,
Hildo

PS: I tried to look in the past messages but got a lot
of 'message unvailable'.
 
Hi - Try the following function...

Function CalcAge(Start)
CalcAge = Int((DateDiff("m", Start, Now)) / 12)
End Function
 
Back
Top