I have this code, that has to transpose the data. Problem is, that i don't know how to make it dynamic, so it can transpose more than till column "O". But if there is 300 rows of data, it should be able to transpose that data down the columns.
Sub TransposeData()
Range("A2:O15").Value = WorksheetFunction.Transpose(Range("A2:O8"))
End Sub
I have just a test data set here, but when i add more than 15 rows of data, it cant transpose it beyond the column "O".