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
- Read the invoice document
- Scape the required fields
- Write the fields in a data table
- repeat the process of each invoice
- Now you have all the invoice written to a data table
- 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