Private Sub CommandButton1_Click() 'bouton Archiver
Dim c As Range, ge
With [Tableau8] 'tableau structuré
Set c = .Columns(1).Find("", , xlValues)
If c Is Nothing Then Set c = .Cells(.Rows.Count + 1, 1)
c.Resize(, 19) = Application.Transpose([J10:J28].Value2)
c(1, 22) = [G29]
.Columns(22).EntireColumn.AutoFit 'ajustement largeur
.Parent.Activate 'facultatif
End With
[J10:J12,J14:J25,J27,G29,G34:G38,M34:M41] = "" 'RAZ
End Sub