Adding New Column in CSV

I am trying to add a new column named description in which takes the scraped data from each news article and assigns it into the description corresponding to the correct Article. I have tried data column also but that doesn’t seem to work either.




Any suggestions would be great :slight_smile:

2 Likes

Fine
you were almost done
in add data row activity mention the property ARRAYROW like this
{row(0).ToString,row(1).ToString,Div.ToString}
and datatable property as DataToAddCSV and remove the Datarow property

where Div is the variable that you obtain from GET FULL TEXT activity

Cheers @Stabbathehut

2 Likes

@Stabbathehut

Add datanrow is adding new row in the datatable.

if you want to append the description in the existing row, the only assign activity[row.item(2)=Div] is enough in loop to update the datatable.

You can remove add data row and test the process.

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.