View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
David Billigmeier David Billigmeier is offline
external usenet poster
 
Posts: 176
Default Convert column data to semicolon delimited text string

You can use the following UDF. Then within your sheet enter the formula:
=DelimCat(A1:A10,";")

Function DelimCat(rng As Range, delim As String)
For Each rn In rng
temp = temp & rn & delim
Next
DelimCat = Left(temp, Len(temp) - 1)
End Function


--
Regards,
Dave


"Richard RE" wrote:

Hi,

I want to convert a column with let's say about 900 hundred rows with data
(numbers) into a single string, where the rows data are semicolon delimited.
How can I manage this?

Example:
column1
row1 123
row2 456
row3 876
row4 345

into a single string (semicolon delimited): 123;456;876;345

thanks for any help in advance!

//Richard