Dicas - Excel - 75links da web para ter como resultado apenas um arquivo final

Olá,

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?

Aguardo, obrigada!

Hi @Tay_Maite

Use read range of Excel and use for each row

Use open browser activity and pass it as row(“column name”). ToString

Ensure The selector you are using is same by clicking on the document

Thanks
Ashwin.S

1 Like

Hi @Tay_Maite

Welcome to the forum.

  1. Read the excel file into a data table using Read Range Activity.
  2. 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.
  3. Once the file is downloaded, move the file into a specific folder. Do this for all other downloaded files.
  4. Take all the downloaded files into a List. (List files = Directory.GetFiles(FolderName))
  5. 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.

Regards,
Karthik Byggari

1 Like