Hi Cooter,
Please try this below code..
Sub form()
Dim FixRow, FixCol As Integer
Dim Sign As Boolean
FixRow = 2
LstCell = Cells(Rows.Count, 2).End(xlUp).Row
While FixRow <= LstCell
If Sign = False And Cells(FixRow, 1) = Cells(FixRow + 1, 1) Then
FixCol = Cells(FixRow, Columns.Count).End(xlToLeft).Column
Sign = True
End If
If Cells(FixRow, 1) = Cells(FixRow + 1, 1) Then
Cells(FixRow, FixCol + 1) = Cells(FixRow + 1, 2)
FixCol = Cells(FixRow, Columns.Count).End(xlToLeft).Column
Cells(FixRow + 1, 2).EntireRow.Delete
End If
If Cells(FixRow, 1) <> Cells(FixRow + 1, 1) Then
Sign = False
FixRow = FixRow + 1
End If
LstCell = Cells(Rows.Count, 2).End(xlUp).Row
Wend
End Sub
Bookmarks