Copy cells M14:Q14 on Sheet1
Paste the value of the copied cells on the first empty row of column A on Sheet 2
Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1).Resize(,5).Value _
= Sheets("Sheet1").Range("M14:Q14").Value
Paste the value of same copied cells (transposed) in the first empty cell of row 3 on Sheet3
Sheets("Sheet3").Cells(3, Columns.Count).End(xlToLeft).Offset(, 1).Resize(5).Value _
= Application.Transpose(Sheets("Sheet1").Range("M14:Q14").Value)
Clear the values
Sheets("Sheet1").Range("M14:Q14").Value = ""
Bookmarks