A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Robbins, thank you for your reply...still wasn`t copy-paste with your code, it was something similar like mine just instead of "ActiveCell.Offset(1, 0).Select" I should have been used "ActiveCell.Offset(1, 0).Activate"...as I posted my question on another forum I got a reply which solved my issue that I spend yesterday all day long to try to figure it out, here is the code:
Private Sub CommandButton1_Click()
ActiveCell.Offset(1, 0).Activate
Workbooks("Book1.xlsm").Worksheets("Sheet2").Range("A" & ActiveCell.Row & ":E" & ActiveCell.Row).Copy
Workbooks("Book2.xlsm").Worksheets("Sheet1").Range("B20").PasteSpecial Transpose:=True
End sub
Many thanks for sharing your knowledge and your advices!