I have a problem with the development of my bot. I have the following case:
Bases on a Excel File with multiple cells with Unique ID’s, I want the bot to search on a specific website for each cell, then an extract of the data of the page and add the data to separate (I.e. different) databases. And after that I want to add these different databases in 1 excel file and separate sheets for each database within that file. Do you know if this is even possible?
I have the following concrete problems:
How to create multiple databases (as I use the Excel file as Input)?
How to add these multiple databases to 1 Excel with separate sheets for each different database?
First your datatable create is not impacted by the fact that your input is excel file.
Im sure you are reading a sheet from the excel file then processing each id in a ‘forEach Row’
So once you are scraping data from the web url, you will be getting the data in a datatable
All you have to do is to make the bot write datatable with a variable sheet name in you write range
[please ignore the error indicators]
this answers point 2 as well
The point is not to create separate dt but make it a variable sheet that you will write to.