Problème de logique, VBA
Fermé
2pax.cruz
-
14 juil. 2010 à 09:36
thev Messages postés 1887 Date d'inscription lundi 7 avril 2008 Statut Membre Dernière intervention 24 novembre 2024 - 14 juil. 2010 à 13:17
thev Messages postés 1887 Date d'inscription lundi 7 avril 2008 Statut Membre Dernière intervention 24 novembre 2024 - 14 juil. 2010 à 13:17
A voir également:
- Problème de logique, VBA
- Vba attendre 1 seconde ✓ - Forum VB / VBA
- Vba récupérer valeur cellule ✓ - Forum VB / VBA
- Mkdir vba ✓ - Forum VB / VBA
- Excel compter cellule couleur sans vba - Guide
- Vba range avec variable ✓ - Forum VB / VBA
1 réponse
thev
Messages postés
1887
Date d'inscription
lundi 7 avril 2008
Statut
Membre
Dernière intervention
24 novembre 2024
691
14 juil. 2010 à 13:17
14 juil. 2010 à 13:17
insérer le code suivant :
année_début = 2009 mois_début = 1 année_fin = 2010 mois_fin = 2 date_début = DateSerial(année_début, mois_début, 1) date_fin = DateSerial(année_fin, mois_fin, 1) For i = 0 To DateDiff("m", date_début, date_fin) date_i = DateAdd("m", i, date_début) mmaaaa = Format(date_i, "mmyyyy") Next