1 2 3 4 5 6
|
Range(Cells(1, 1), Cells(Range("A" & Rows.Count).End(xlUp).Row, 4)).Copy Destination:=Range("T1") 'LM
Range(Cells(2, 1), Cells(Range("A" & Rows.Count).End(xlUp).Row, 1)).Copy Destination:=Range("T" & Range("A" & Rows.Count).End(xlUp).Row + 1) 'copie des noms
Range(Cells(2, 5), Cells(Range("A" & Rows.Count).End(xlUp).Row, 7)).Copy Destination:=Range("U" & Range("A" & Rows.Count).End(xlUp).Row + 1) 'LA
Range(Cells(2, 8), Cells(Range("U" & Rows.Count).End(xlUp).Row, 10)).Copy Destination:=Range("U" & Range("T" & Rows.Count).End(xlUp).Row + 1) 'MM
Range(Cells(2, 1), Cells(Range("A" & Rows.Count).End(xlUp).Row, 1)).Copy Destination:=Range("T" & Range("T" & Rows.Count).End(xlUp).Row + 1) 'recopie des noms |
Partager