How to get cell from DataTable

Is it possible to get one specific cell from DataTable?

yes, dt.rows has all the rows
and each row has an array of the cells
If i remember correctly it uses 0 as first row/cell so if you want 5,8 you use
dt.rows(4)(7).toString()

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.