Here's a VBA solution to the issue. It works on a single sheet - moving data
from the column (A) you specify in the code to rows beginning in a column (C)
that you also specify. You can change the Const values as required for
virtually any similar situation.
To put the code to work, open the workbook, press [Alt]+[F11] to open the VB
editor then choose Insert --> Module and copy and paste the code below into
it. Make any edits to the code you need to (shouldn't need any based on your
request). Close the VB Editor. Choose the appropriate worksheet, then use
Tools --> Macro -->Macros to put it to work.
Sub TransposeColumnToRows()
Const columnToMove = "A"
Const firstNewColumn = "C"
Const firstRow = 1
Const lastRow = 1435
Const groupSize = 6
Dim RC As Long
Dim CC As Integer
Dim groupCount As Long
'this moves column of data in A
'to rows beginning with column C holding 1st element
Application.ScreenUpdating = False ' improve performance speed
For RC = firstRow To lastRow - groupSize Step groupSize
groupCount = groupCount + 1
For CC = 0 To groupSize - 1
Range(firstNewColumn & groupCount).Offset(0, CC) = _
Range(columnToMove & RC).Offset(CC, 0)
Next ' CC loop end
Next ' RC loop end
End Sub