Tnks but i have the solution.
I would just like you to help me get one more piece of information.
I have this Object DataRow[2] { DataRow { HasErrors=false, ItemArray=object[8] { “Fenty”, “5984179”, “3003150”, “RU04299”, “8509”, “12.01”, “USD”, “27 familias, 32 modelo adicionales” }, RowError=“”, RowState=Added, Table=[Hoja1] }, DataRow { HasErrors=false, ItemArray=object[8] { “Fenty”, “5989775”, “3003150”, “RU04299”, “2813”, “98.05”, “USD”, }, RowError=“”, RowState=Added, Table=[Hoja1] } } and I need different fields of it.
For example “5984179” In data Row 1 in the 2nd position
But from all the data Row
Cross reference
Do a start with
- For each row in Datatable Activity | row in YourDataTableVar
- Log message: row(1).toString()
And check the output panel
As it has 2 elements in datarow
can use this dataRowVariable(0).item(1).ToString
will give the required value you needed
if you know the column names then instead of 1 can use the column name also dataRowVariable(0).item("ColumnName").ToString
if you need 5989775 then dataRowVariable(1).item(1).ToString
Hope this helps
cheers