DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub Duzenle()
Dim i As Long, _
j As Long, _
lr As Long
Application.ScreenUpdating = False
lr = Cells(Rows.Count, "A").End(3).Row + 1
Range("H2:H" & lr).Clear
j = 2
i = 2
Do
If Cells(j, "B") = Cells(i, "B") Then
Cells(j, "H") = Trim(Cells(j, "H") & " " & Cells(i, "E"))
Else
Cells(i, "H") = Cells(i, "E")
j = i
End If
i = i + 1
Loop Until i > lr
Range("H1:H" & lr).SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=R[-1]C"
Application.ScreenUpdating = True
End Sub