What is the easiest way to get value from Data table cell, without writing it into excel file?
1 Like
Hi, @Olivera_Kalinic
You can use expression
Value = Datatable.Rows(rowIndex)(ColumnIndex)
Use the follwing code to get cell value from datatable
dt1.Rows(rowindex)(columnname)
where rowindex starts from zero, column name would be the name of column name of column in string
Thanks & Regards,
Nived N