Hi All,
I want to get double values from a datarow getting error. Can some one help on this. Below is the code which i tried.
finalDT.Select(“[MTSOCLLI] ='”+out_minValue.ToString+“'”).CopyToDataTable()
Hi All,
I want to get double values from a datarow getting error. Can some one help on this. Below is the code which i tried.
finalDT.Select(“[MTSOCLLI] ='”+out_minValue.ToString+“'”).CopyToDataTable()
Hi,
There error says in your data table there is no row. check your data rows.
It seems like FinalDt datatable has no rows in it
kindly validate these stuffs
–what is the source of that datatable FinalDt, if its from read range activity make sure that the sheetname is mentioned correctly and that sheet must have some data in it
–then to validate whether it has rows or not
use a IF condition like this
finalDt.Rows.Count>0
if that is true it will go to THEN part where we can have this ASSIGN ACTIVITY
if not it will go to ELSE part
Kindly try this and let know for any queries or clarification
Cheers @thima