Hey guys, I have a quick question. I have written a UI, that takes a URL from sheet1, pastes it in a web page, scrappes the selected info from that web and then needs to paste it in sheet2. My problem is that I dont know how to set up the write range, so that it would not paste the info on top of other info. When the ui goes to a page, it gets 50 cells of info ant pastes it, when it takes the second url, I would love that the info would be pasted next to the one that is already pasted.
Thanks for the response Arpan, but I dont quite understand a few things. When I use append range, I get an error :
This is how it looks like in a workflow:
And another thing, how does append range work? Will it paste out the info everytime it goes through data scrapping in one url or will it wait for all the url’s to be done scrapping and then will it paste out a huge amount of data?
Then no, my code doesnt need append range. My code looks like this:
Basically I have a excel file, that has 80+ urls. My ui takes the urls one by one, scrapping info from them. It scrapes 50 results from one url. When he goes to paste it in an excel file, it always pastes them in the same range, so that then the last data dissapears, because it’s being pasted on by the newer results.
For example, ui takes the first url, goes to it, scrappes 50 lines of reasults, pastes it to excel. (The info from the first url is pasted in A1:A50). Then he goes up to another url, scrappes again 50 reasults and pastes it to the same sheet, which is good, BUT, it pastes it in (A1:A50) again. I would like for it to be (A51:A101), then (A102:A152) and so on. Is it possible?
He scrapped and pasted the first url’s data, but when he got to the second one, the error poped up. Can it be, that append range works only when the specified excel workbook is not open?