Multi page PDF to Excel

Hi, I have found great examples on how to convert a PDF to Excel using OCR and outputting a data table to excel. I cannot find any examples of how to do on a multi page PDF. Example is an invoice. Header Detail section where the detail section is spanning multiple pages. Any help or an example would be be great. I’m fairly new to UIPath.

Neal

May be you can do as below.

  1. use Get page count activity - to get the page count
    2)Use a while loop i<=pagecount, where i=1
    3)use Get pdf text or get pdf ocr activity to read the pages
  2. write range to write to excel
    5)click on the next button in the pdf (if you are opening with pdf reader)

So loop will contiunue for all pages and extract the data from pdf.