Hi Serenity, welcome to the forum.
If I understand correctly, you have a "record" in cells A1:A11, then a second "record" in A12:A22, a third in A23:A33, etc. down column A, and you want to transpose each of the 11 rows into one row using 11 columns. For example, A1:A11 would transpose into B1:L1. A12:A22 would transpose into B2:L2. So you end up with a table that is 11 columns wide and some amount of rows long?
If that's the case, try this macro. It organizes the data as I stated, and then deletes the original column A so you're only left with the final table.
Sub movedata()
Dim i As Long, j As Long, lastrow As Long
lastrow = Range("A" & Rows.Count).End(xlUp).Row
j = 1
For i = 1 To lastrow Step 11
Range("A" & i & ":A" & i + 10).Copy
Range("B" & j).PasteSpecial Transpose:=True
j = j + 1
Next i
Range("A:A").EntireColumn.Delete
End Sub
Bookmarks