Sou nova nesse mundo incrivel e estou desenvolvendo meu primeiro “robo” mas preciso da opinião de quem entende do assunto (vocês)
Tenho uma planilha de excel com 75 links diferentes, preciso abrir o link e fazer o dowloand do documento, ou seja, são 75 arquivos de excel. Meu sonho rsrsrs é conseguir deixar todos juntos.
Qual é a melhor forma de baixar esse documentos e depois colocar todos em um único?
Read the excel file into a data table using Read Range Activity.
Loop thru the data table, take one link at a time and use Open Browser activity, pass the link to this activity and download the file, close the browser.
Once the file is downloaded, move the file into a specific folder. Do this for all other downloaded files.
Take all the downloaded files into a List. (List files = Directory.GetFiles(FolderName))
For Each file in List,
Excel Application Scope - pass the file name here
Read Range Activity - to read the excel into a data table
Merge Data Table Activity - pass the previous step data table here to merge all the excel file data.
Please let me know if you need detailed information regarding any step.