VBA: comment détecter un nombre pair ?
Résolu/Fermé
mod77
Messages postés
1273
Date d'inscription
vendredi 10 juillet 2009
Statut
Membre
Dernière intervention
14 janvier 2024
-
Modifié par mod77 le 27/10/2012 à 16:16
Nico - 4 oct. 2016 à 10:07
Nico - 4 oct. 2016 à 10:07
A voir également:
- Vba nombre pair
- L'indice n'appartient pas à la sélection vba - Forum VB / VBA
- Incompatibilité de type vba ✓ - Forum Programmation
- En raison d'un nombre important d'échec de connexion snapchat - Forum Snapchat
- Nombre facile - Télécharger - Outils professionnels
- Nombre pair python ✓ - Forum Python
2 réponses
mod77
Messages postés
1273
Date d'inscription
vendredi 10 juillet 2009
Statut
Membre
Dernière intervention
14 janvier 2024
53
27 oct. 2012 à 16:25
27 oct. 2012 à 16:25
Je réponds à ma question moi-même car je viens de trouver ce ci:
for i =1 to 4
If i mod 2 <>0 Then 'si i impair
Cells(12, "A").Value = i
Else 'si i pair
Cells(12, "B").Value = i
End If
next
for i =1 to 4
If i mod 2 <>0 Then 'si i impair
Cells(12, "A").Value = i
Else 'si i pair
Cells(12, "B").Value = i
End If
next