I’m able to display the whole row data by using the “for each row” activity in datatable. Can anyone help me how can i print first element of the row.
Hi @Alankrutha_Ammu ,
Check this below screenshot,
If you want to just print first row element without for each row then check below,
Hope this might help you
1 Like
use dt.row(0).Item(0).Tostring
To fetch first row and first element. Here It is first column value.
Cheers