The code should start at Cell B2 and iterate through the column, rearranging the data horizontally according to the picture (see picture description).
The for-loop works for square 1 (street address 1, zip 1 and so on)is arranged horizontally, but not for the following squares.
Help in this regard would be greatly appreciated. Many thanks.
Do While IsEmpty(Cells(iRange, 2)) = False
For i = iRange To iLimit
Cells(i, iRange).Select
j = i
Selection.Cut Destination:=Cells(iRange, j)
Next i
iRange = iRange + 6
iLimit = iLimit + 6
Loop