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

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,
image

If you want to just print first row element without for each row then check below,
image

Hope this might help you :slight_smile:

1 Like

use dt.row(0).Item(0).Tostring

To fetch first row and first element. Here It is first column value.

Cheers