Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Month Calculations
Message
De
21/04/2001 17:36:39
 
 
À
20/04/2001 19:10:44
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00498208
Message ID:
00498304
Vues:
12
>We need to determine exactly how many months difference there is between 2 dates in VFP
>Example:
>01/01/2001 - 03/01/2001 = 3 months
>
>We are currently trying the following:
>x=date1 (01/01/2001)
>y=date2 (03/01/2001)
>z=y - x
>b=z/365*12
>c=b +1
>
>result=int(c)
>
>The problem we are running into is short months
>
>
>Larry


Try this,

((year({^2001/03/01}) - year({^2001/01/01})) * 12) + (month({^2001/03/01}) - month({^2001/01/01}))

or (year(datehi) - year(datelo) * 12) + (month(datehi) - month(datelo)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform