I start off with for each excel row activity and then I do something for each UI element I then download one or more files. Each file has a specific text assigned to it on a website and I store it as a variable. And then I use this variable and I write it to one column from my current row.
If there is 1 file then there is no problem, but when there are 2 or 3 or 4 files it does not add it to what is currently in the cell.
How can I manage it?
Content of my var is different with For Each UI Element.
Use a read cell activity on the cell where you would write the data and store the output in varaible str
Use write cell activity on same cell where you want to write the data and give the value as str + "," + var - here str is from previous step and var is the variable holding the data which you want to append to the data present in the cell