Since in cell max. no. of characters can be 32767 you cant put the
result in to a cell.
You can however put the result in to a text file.
See code below for the same, assuming the column is 'F'. You can change
the range as your requirement.
(With a P4 Machine it takes almost 6 seconds to write to the text file,
and the text file size would be around 60 MB if 1000 character per
cell.)
In the code the text file must be opened for 'Append' (8).
(-1) indicates in Unicode format.
The result is put in to C:\ drive in file combofile.txt.
You need not create the file first the write command will create it, if
it does not exist.
Sub combiner()
Dim myRange As Range, fs, f
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.OpenTextFile("c:\combofile.txt", 8, -1)
Set myRange = Worksheets("Sheet1").Range("F1:F6000")
For Each c In myRange.Cells
f.Write Worksheets("Sheet1").Range("A1").Value & "|" & c.Value
Next c
f.Close
End Sub
Sharad