Log messages

how to write log message after build datatable to know what are the colounm headers in it

1 Like

you can use dt.columns to get column names and you can use for each activity to loop through the column names

ok tq lak_ui

Please mark as solution if it helped you

Hey @prathik_8679

Please try the below,

String.Join(",",dt_DataTable.Columns.Cast(Of DataColumn)().Select(Function(col) col.ColumnName))

Thanks
#nK

Great nithin i got exact value that i needed, thanks.

1 Like

Cool buddy :+1::innocent:

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