A voir également:
- Excel vba if multiple conditions
- Liste déroulante excel - Guide
- Excel cellule couleur si condition texte - Guide
- Paris multiple 2/6 explication ✓ - Forum Loisirs / Divertissements
- Si et excel - Guide
- Aller à la ligne excel - Guide
23 réponses
Voila enfin un code qui marche, merci quand même pour ton implication.
Il me reste maintenant à voir comment je vais gérer quand j'aurai plus d'une série de 0.
Dim i As Integer, j As Integer For i = 0 To Liste.Lstb_pts.ListCount - 1 ' on cherche tdep If Liste.Lstb_pts.List(i, 3) = 0 And i > 0 Then tdep = Liste.Lstb_pts.List(i - 1, 3) Exit For End If Next i ' on cherche tfin For j = i + 1 To Liste.Lstb_pts.ListCount - 1 If Liste.Lstb_pts.List(j, 3) <> 0 Then tfin = Liste.Lstb_pts.List(j, 3) Exit For End If Next j
Il me reste maintenant à voir comment je vais gérer quand j'aurai plus d'une série de 0.