Comment fait-on pour tester si une valeur existe dans une ligne ?
J'ai fais ça mais ça marche pas ...comme d'hab.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
i = 1
If Workbooks("local_masse.xls").Worksheets("lm2").Cells(1, i).Value = "w" Then
 
    MsgBox ("fin")
    i = i + 1
 
End If