Problem extracting the Tables from the word document

PDFInvoice1.zip (241.3 KB)

I am able to extract the first table, but not the rest of the tables. Attaching the workflow with this Post.

@veerishu, i have not downloaded the workflow but based on the error message, the quickest solution i can think of right now is make the DataTable variable empty before extracting a second table. you can do this by simply using an assign activity and assign your DataTable variable to Nothing eg dt_variable = Nothing

Or by using the DataTable.Clear() function.

Or by assigning the Dt variable to New DataTable

Or Lastly use the DataTable.Reset() function

1 Like

I tried doing that but still the same issue.