If your names are all in column A in pairs of 5 rows, this macro wil
re-sort them into Columns D through H, complete with labels
Try it on a copy of your data, make sure Columns D through H are clear
=============Macro========
Sub SortAddressList(
Application.ScreenUpdating = Fals
On Error GoTo 2
Range("D1").FormulaR1C1 = "Name
Range("E1").FormulaR1C1 = "Address
Range("F1").FormulaR1C1 = "City
Range("G1").FormulaR1C1 = "State
Range("H1").FormulaR1C1 = "Zip
Range("D1:H1").Font.Bold = Tru
Range("A1").Selec
Selection.Resize(Selection.Rows.Count + 4,
Selection.Columns.Count).Selec
Selection.Cop
Range("D65000").End(xlUp).Offset(1, 0).PasteSpecia
Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=
False, Transpose:=Tru
Range("A1").Selec
Selection.Resize(Selection.Rows.Count + 4,
Selection.Columns.Count).ClearContent
Application.CutCopyMode = Fals
10
Range("A1").End(xlDown).Selec
Selection.Resize(Selection.Rows.Count + 4,
Selection.Columns.Count).Selec
Selection.Cop
Range("D65000").End(xlUp).Offset(1, 0).PasteSpecia
Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:=
False, Transpose:=Tru
Range("A1").End(xlDown).Selec
Selection.Resize(Selection.Rows.Count + 4,
Selection.Columns.Count).ClearContent
Application.CutCopyMode = Fals
GoTo 1
Application.ScreenUpdating = Tru
2
Range("D1").Selec
Application.ScreenUpdating = Tru
End Su
=====================