As long as they are separated by 11 rows, this does it
Sub testloop()
Dim cRows As Long
Dim i As Long
Dim j As Long
Dim agtname As String
cRows = Range("A" & Rows.Count).End(xlUp).Row
With Worksheets("Sheet2")
For i = 1 To cRows Step 11
For j = 1 To 11
.Cells((i - 1) \ 11 + 1, j).Value = Cells(i + j - 1,
"A").Value
Next j
Next i
End With
End Sub
--
HTH
Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
sagesearcher said:
I have a customer list downloaded into Excel. I want to move customer
name, address, state, zip, etc fields into columns so that I can import them
into a database. Each customer, for example, is separated by about eleven
rows. Can this be done?