How to add comma in the ouput data table activity

Hi All,

Let us consider a data table DT1 having the name column. I am using OUTPUT data table activity to display the data which is present in the DT1.

I need to display the result with the comma separated value.!

Expected Output

Hi,

Can you try the following expression?

String.Join(",",DT1.AsEnumerable.Select(function(r) r("Name").toString).ToArray)

Regards,

3 Likes

I worked. Thank you.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.