Gruppe
Format
Problem
Die Zellen aus Spalte A und B sollen verbunden werden, ohne dass die Werte aus Spalte B verlorengehen.
StandardModule: basMain
Sub Verbinden()
Dim iRow As Integer
iRow = 1
Do Until IsEmpty(Cells(iRow, 1))
Cells(iRow, 1) = Cells(iRow, 1) & " - " & Cells(iRow, 2)
Cells(iRow, 2).ClearContents
Range(Cells(iRow, 1), Cells(iRow, 2)).Merge
iRow = iRow + 1
Loop
Columns(1).AutoFit
End Sub