A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
make a copy, before you run the code below
(convert data from Active Sheet)
Sub ConvertData()
Dim N As Long
N = Cells(Rows.Count, "A").End(xlUp).Row
For i = N To 2 Step -1
If Cells(i, 1) <> "" And Cells(i - 1, 1) <> "" Then
Cells(i - 1, 1) = Cells(i - 1, 1) & " " & Cells(i, 1)
Rows(i).Delete
End If
Next
Range("A:A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub