How to call a row without for each row activity

How to call a row without For each row activity?

Hi @prititit

Check with the thread below!

Regards

Hi @prititit

Dt - datatable
dtRow - system.data.datarow

dtRow = Dt.rows(1)

Will give 2nd row.

Thanks

1 Like

Hi @prititit

If you know the row before calling you can use @prasath_S Suggestion

If you don’t know the row

  • You can try with lookup data table and get the row index
  • And call the row which is been already suggested

Regards
Sudharsan

1 Like