How can I append 'semi-colon' separated from output of Output Data Table

Output of Output data table be like:
KXSSFHVPNW
nAC229WR5YZ
nVMCJ62KUGG
nT9732CRHXZ
nYUMNKHE8JP

Wanted expected output : KXSSFHVPNW;nAC229WR5YZ;nVMCJ62KUGG;nT9732CRHXZ;nYUMNKHE8JP Attendance in single string. Can someone help me with this.

instead of using the output from Output datatable use the datatable itself

Assign Activity
strFlatten =
String.Join(";", YourDataTableVar.AsEnumerable.Select(Function (x) x(0).toString.Trim))

It worked. Thank you so much

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