Does anybody know how to convert a column of values to a string that is separated by commas? The column is of variable length.
e.g column A contains
14
25
654
12
the result required is 14,25,654,12
I was thinking of Do Loop using a range, eg.
Do Until rngcell.Value = ""
Loop
Any help would be appreciated.
e.g column A contains
14
25
654
12
the result required is 14,25,654,12
I was thinking of Do Loop using a range, eg.
Do Until rngcell.Value = ""
Loop
Any help would be appreciated.