Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Age function or algorithm?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00169602
Message ID:
00169778
Vues:
22
>Does someone have a routine that calculates someones's age based upon the current date?
>
>I have written one, but it does not account for leap years so it's basically useless and I don't want to reinvent the wheel. It's probably a common routine out there.

The easy way:
FUNCTION AGE
LPARAMETER dBirth, dWhen
LOCAL nYears
nYears = YEAR(dWhen) - YEAR(dBirth)
IF GOMONTH(dBirth, 12*nYears)>dWhen
nYears = nYears-1
ENDIF
RETURN nYears
HTH!
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform