Hi, I want to insert some data in specific Excel column that I have in a string variable, how could I do that?
mystring: 5266, 5267,5280…
split2 is my string
Hi, I want to insert some data in specific Excel column that I have in a string variable, how could I do that?
mystring: 5266, 5267,5280…
split2 is my string
use assign activity in foreach
row.item(“Column Name”) = values
could you explain me a little better since i’m something new in uipath
I’m trying what you mention but I get this
this is my four each
It says row is not declared.
Since you are using
ForEach item in vRangoPru
Use item.item(“Your column Name”)=“your data”
not row.item(“Your column Name”)=“your data”
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.