Sub Macro1()
Range("A1,A3,A5,A7").Copy
Sheets("Feuil3").Range("A" & [A1].End(xlUp).Row + 1).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub
mais les cellules séletionnées de la feuille 1 restent activées
Sub Macro1()
Range("A1,A3,A5,A7").Copy
Sheets("Feuil3").Range("A" & [COLOR="Red"][A65000][/COLOR].End(xlUp).Row + 1).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub
Sub Macro1()
Range("A1,A3,A5,A7").Copy
Sheets("Feuil3").Range("A" & Sheets("Feuil3").[A65000].End(xlUp).Row + 1).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Application.CutCopyMode = False
End Sub
Public Sub Copie()
Sheets("Feuil1").Range("A1,A3,A5,A7").Copy
Sheets("Feuil2").Range("A" & Sheets("Feuil2").[H65000].End(xlUp).Row + 1).PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
With Sheets(2).Range("H65536").End(xlUp)(2)
Sheets(1).Range("A10").CurrentRegion.Copy
.PasteSpecial Paste:=xlPasteColumnWidths
.PasteSpecial Paste:=xlPasteAll
End With
Application.CutCopyMode = False
End Sub