Convert datatable value of integer to list of integer

i have a datatable like below

1234
234
4536

and i would like to convert this to

1234,234,4536

first datatable is comprised of three cells and i would like to change that into one cell

Hi @Seonyong

Keep an assign with list variable
And pass the datatable
And use add to collection

Thanks
Ashwin.s

Hi @Seonyong,

Use Assign Activity

strvalue=string.join(",",(From row in dt.AsEnumerable() select row("Column1")).ToArray())

Regards, Arivu :slight_smile: