Hi jgilliga,
Here's a routine that I got from an esteemed forum member a while back - I pasted your:
"Tags Isolated via Data --> "Text to Columns"" in Range A1 of sheet 2 and the ran this:
Sub Gilligan() 'Horizontal Sort by WasWodge
Dim LstCo As Long, LstRow As Long, i As Long
LstCo = Cells.Find(What:="*", SearchOrder:=xlColumns, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Column
For i = 1 To LstCo - 1: Cells(2, i + 1) = "Tag " & "0" & i: Next
LstRow = Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).row
For i = 3 To LstRow
Range(Cells(i, 2), Cells(i, LstCo)).sort _
Key1:=Cells(i, 1), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlLeftToRight
Next
End Sub
Bookmarks