Combining Cell into One

  • Thread starter Thread starter zyx777
  • Start date Start date
Sub combine()

Dim text as string, i As Long
For i = 1 To 5000
text = text & Cells(1, 1)
Next
[b1] = text

End Sub


PAtrick Molloy
Microsoft Excel MVP
 
Back
Top