Combining Cell into One

P

Patrick Molloy

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
 
Top