Copy and Paste (transposed & values) a set range in a different sheet in the next empty row
问题 I have some data in range P1:R13 on a sheet called Training Analysis. I want to copy and paste these data on a second sheet called Foglio1. I want it to be just values . I need these data to be pasted in a range A2:M4 , in other words I want it to be transposed. I got the following code and it is working. But now, when I get new data I need to paste them under those I already have. Sub add() Dim lastrow As Long lastrow = Sheets("Foglio1").Range("A65536").End(xlUp).Row ' or + 1 Range("P1:R13")