Private Sub CommandButton1_Click()
With Sheets("STOCK SLEEVES")
Application.ScreenUpdating = False
L = 1 + .Range("A65500").End(xlUp).Row
.Cells(L, "A") = userform2.AR
.Cells(L, "B") = userform2.CP
.Cells(L, "F") = userform2.EMP
.Cells(L, "H") = userform2.TYP
.Cells(L, "J") = userform2.NBR
.Cells(L, "Q") = userform2.SIG
'.Cells(L, "A") = userform2.SLE ' Nombre de sleeves par unité, où le mettre
Unload userform2
End With
End Sub