An Azure service that turns documents into usable data. Previously known as Azure Form Recognizer.
Welcome to Microsoft Q&A
Hello @Anis Elosta , I hope you are doing well,
This is a known limitation with Azure AI Document Intelligence. Currently, table rows cannot span page boundaries during labeling or extraction, so when a logical row continues onto the next page, it is typically returned as two separate rows.
The recommended approach is to merge the rows during post-processing before writing the data to SharePoint. For example, you can:
- Detect rows where the continuation on the next page has empty or missing key fields (such as From and To times) while only the description column contains data.
- Merge that description with the previous row instead of creating a new record.
- Use page number, row order, and the presence (or absence) of identifying fields as heuristics to determine whether a row is a continuation.
In your example, the second fragment has no new From/To values and only continues the event description. This makes it a good candidate to append to the previous 10:00–12:00 event before creating the SharePoint list item. If your documents follow a consistent format, this type of post-processing is generally more reliable than attempting to solve it during model training.
If this answer helped you, please consider marking it as the accepted answer. This helps others in the community find the solution more quickly.