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
@Estefania_Elena_Medina_Or
Welcome to the forum
We would use the Column Name from the corresponding DataTable or the Column Index to access the value e.g.
Assign Activity:
myValue | DataType:String = yourRowVarName(1).ToString()
as it is 0-based index we used 1 for the second column
It si recommended to take some courses from the UiPath Academy, when more introduction help is needed
Also you can do some experiments within the debugging panels as introduced here:
and also try the above mentioned statement
yourRowVarName(1)
And also yourRowVarName.Table.Columns