I’m facing an issue in updating extracted data from webpage to build datatable activity.
I’m using build datatable to add my headers.
I’m extracting data from LinkedIn. sometimes I may not having some fields and it’s having null. When i try to update this data build datatable. It is writing in wrong columns.
For this data I don’t have salary in LinkedIn. When i try to update that in Excel it’s giving 1 column wrongly. In mentioned picture it’s writing reposted value in SALARY column. How can I fix this.
Hi @Shiva_Nikhil I’m not using add datarow activity here.
I’m extracting data from website and storing in “Extractdatatable” variable.
For this datatable I need to add a new column in starting I’m adding that using add data column activity. After that I’m directly appending that data to my excel.
@Shiva_Nikhil i tried that. It’s not getting the column. While extracting data from web. If the data is not available for that column, it’s skipping that column.
In between Location and Reposted there is another column called salary. It’s missed because there is no salary for those records in website.
First create empty datatable using BuildDataTable (Let’s say dtResult)
Next use MergeDataTable : src is ExtractDataTable, dist is dtResult
Finally use Append range.
Hi @Yoichi getting below error. Actually I have some more additional columns in my Build datatable and which are not available in extracted datatable. I need to go to another website to fill rest of the columns