Hi
we got Two options to do this
–like either we can use activity like GET ROW ITEM https://docs.uipath.com/activities/docs/get-row-item
where mention the properties like datatable and datarow and the column index
datatable = dt
ROW = dt.Rows(0) \where 0 is the row index of first row
and column index as = 0
both column and row index starts from 0 for first row and first column
or
–with a ASSIGN activity like this str_output = Datatable.Rows(rowindex)(columnindex)
or str_output = Datatable.Rows(rowindex)(“columnname”)
where both column and row index starts from 0 for first row and first column