Try this macro.
Sub Test()
For N = Selection.Row + Selection.Rows.Count - 2 To Selection.Row Step -1
For M = Selection.Column To Selection.Column + Selection.Columns.Count - 1
If Cells(N, M) = Cells(N + 1, M) Then
If M = Selection.Column Then
Cells(N, M + 1) = Cells(N, M + 1) & Chr$(10) & Cells(N + 1, M + 1)
Cells(N + 1, M + 1).ClearContents
Rows(N + 1).Delete
ElseIf M = Selection.Column + 1 Then
Cells(N, M - 1) = Cells(N, M - 1) & Chr$(10) & Cells(N + 1, M - 1)
Cells(N + 1, M - 1).ClearContents
Rows(N + 1).Delete
End If
End If
Next M
Next N
End Sub
The area needs to be selected before the code is run.
Bookmarks