Scan Different fields of an invoice and input to a datatable row

I am screen scrapping an invoice image and i want to add each scraped text to a particular column in a data table by creating a new datatable.

1 Like

The steps could be
Prerequisite: Create a data table in the format in which you want the final table to look like

  1. Read the invoice document
  2. Scape the required fields
  3. Write the fields in a data table
  4. repeat the process of each invoice
  5. Now you have all the invoice written to a data table
  6. Use this datatable for further analysis or write it in an excel sheet with Headers … that is you can access data row or whole datatable at once.
1 Like