Listview avec 2 conditions
Résolu/Fermé
lanetmel
Messages postés
200
Date d'inscription
mercredi 24 août 2011
Statut
Membre
Dernière intervention
15 mars 2018
-
8 mai 2012 à 01:57
lanetmel Messages postés 200 Date d'inscription mercredi 24 août 2011 Statut Membre Dernière intervention 15 mars 2018 - 8 mai 2012 à 17:53
lanetmel Messages postés 200 Date d'inscription mercredi 24 août 2011 Statut Membre Dernière intervention 15 mars 2018 - 8 mai 2012 à 17:53
A voir également:
- Listview avec 2 conditions
- Supercopier 2 - Télécharger - Gestion de fichiers
- Whatsapp avec 2 cartes sim - Guide
- 2 ecran pc - Guide
- Word numéro de page 1/2 - Guide
- Mise en forme conditionnelle excel plusieurs conditions - Guide
2 réponses
f894009
Messages postés
17268
Date d'inscription
dimanche 25 novembre 2007
Statut
Membre
Dernière intervention
29 mars 2025
1 713
8 mai 2012 à 10:45
8 mai 2012 à 10:45
Bonjour,
For Each x In sh.Range("A6:A" & Cells(Rows.Count, 1).End(xlUp).Row) ' Va trouver le lot demandé dans textbox3
***For Each y In sh.Range("D6:D" & Cells(Rows.Count, 1).End(xlUp).Row) ' Va trouver seulement les entrées
If x.Value = TextBox3.Value*** And y.Value = TextBox54.Value Then
essayez ceci
For Each x In sh.Range("A6:A" & Cells(Rows.Count, 1).End(xlUp).Row) ' Va trouver le lot demandé dans textbox3
If x.Value = TextBox3.Value And Cells(x.Row, 4).Value = TextBox54.Value Then
A suivre
For Each x In sh.Range("A6:A" & Cells(Rows.Count, 1).End(xlUp).Row) ' Va trouver le lot demandé dans textbox3
***For Each y In sh.Range("D6:D" & Cells(Rows.Count, 1).End(xlUp).Row) ' Va trouver seulement les entrées
If x.Value = TextBox3.Value*** And y.Value = TextBox54.Value Then
essayez ceci
For Each x In sh.Range("A6:A" & Cells(Rows.Count, 1).End(xlUp).Row) ' Va trouver le lot demandé dans textbox3
If x.Value = TextBox3.Value And Cells(x.Row, 4).Value = TextBox54.Value Then
A suivre
lanetmel
Messages postés
200
Date d'inscription
mercredi 24 août 2011
Statut
Membre
Dernière intervention
15 mars 2018
4
8 mai 2012 à 17:53
8 mai 2012 à 17:53
Bonjour f894009,
ça fonctionne parfaitement!
merci beaucoup
Mélanie
ça fonctionne parfaitement!
merci beaucoup
Mélanie