Regarde la pièce jointe 1195688
Bonsoir
Quelqu'un peut-il m'aider... J'ai ce code pour ajouter ou soustraire du stock (Sheet1) d'une Listbox mais cliquer sur le bouton de commande ne fait rien.
Tout ce dont j'ai besoin, c'est que les éléments accumulés dans la zone de liste soient ajoutés à mon inventaire enregistré sur la feuille 1.
Private Sub Procesar_Click()
Dim Uf As String
Dim I As Integer
Dim J As Integer
With Hojal
Uf = Range("A" & Rows.Count).End(xlUp).Row
For I = 0 To ListBox1.ListCount - 1
For J= 2 To Uf
If.Cells(J, 1) = ListBox1.List(I, 0) Then
.Cells(J, 2) .Cells(J, 2) + 1 =
End If
Next J
Next I
End With
End Sub