Hi everyone, I have seen several posts about this error, but none that have led me to a solution to my problem.
I have a data table with four columns, but only data in the first one (“companyName”) at the time of getting to the For Each Row loop. I am trying to add data in the second column (“website”) for each company with each passing of the For Each Row loop. See screen shots below
However, when I try to use an assign activity to do so, I get the error mentioned in the subject line of this post. The assign activity reads like: row.Item(“website”) = companyURL . companyURL is a string variable that unsurprisingly holds the company’s URL.
Any suggestions on how to solve / work around this error? Thanks!
I don’t think you need to use Get Row Item activity in the beginning. When using For Each Row, UiPath automatically assigns row object to variable “row”. Try deleting it and run robot again.
I created a similar workflow to yours and it worked fine:
Hi Alisa, thank you for the quick response! I removed the Get Row Item, and you are right about me not needing it, but I still get the same error Here is my updated workflow… any suggestions?
Quick question: do you use Build DataTable activity to create your datatable? Could you please send a screenshot of its structure?
The issue might be that the variable type of the column “website” and the value you are trying to assign are different.
Maybe try also row.Item(“website”) = companyURL.ToString
Also it could be, that companyURL is actually a null value. Try adding Message Box to display companyURL after Get Full Text just to check if companyURL has any value.
I tried the two quick fixes and has no luck… row.Item(“website”) = companyURL.ToString throws the same error and the companyURL does have the correct value.
But yes, I am using a Build Datatable activity in my Main workflow. See below:
@gdoyle, Everything looks good to me, my only suspect is are you using correct quotation mark (“website”)? What happens if you try to print value of row(“website”).ToString using Write Line Activity (even if its blank).
Bhavik my man! Turns out there was no column named “website” because of the way I was building my data table. When I loaded in the one column CSV, it deleted the 3 other columns in the data table I created in the step before.