bonjour
je n'arrive pas à comprendre pourquoi la boucle suivante ne fonctionne pas
pouvez vous m'aider ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 For a = 140 To a = 146 If Left(Cells(a, 2), 3) = "Vic" Then Cells(a, 1) = "oui" Else End If Next a
Precision
range("b140") = "Vickers"
range("b141") = "Vickers"
range("b142") = "Brinell"
range("b143") = "rockwell"
range("b144") = "rockwell"
range("b145") = "Vickers"
range("b146") = "Vickers"
je devrais avoir des "oui" dans les cellules a140, a141, a145, a146
Partager