I want to read the data from the data table with out for each row activity

Hello all i have data table witch contains single row single column value i want to read the value without for each activity.I am trying output data table activity it is converting to string with the column name also , here i want only value please help me out
thank you

Hello @venkateshgorantla

If the data is single row and single column, you can try this:

string result = dt.rows(0)(“NameColumn”) .tostring

1 Like