Hi there,
Thanks for sharing the details and the screenshots - that error points to a specific cause.
Why you're seeing this error
The message 'minimumItemsCount' exceeds the maximum allowed. Actual: '10000'. Maximum: '5000' means a Pagination threshold on your Get items (SharePoint) action is set to 10,000. Per Microsoft documentation, Get items can only retrieve up to the SharePoint list view threshold of 5,000 items - anything above that fails.
How to fix it
- Open the Get items action → Settings → Pagination → set the Threshold to 5000 (not 10000). Going above 5,000 is not supported.
- For your List rows present in a table (Excel) action, also turn on Pagination in settings - by default it only returns 256 rows, so with ~8k rows you'd otherwise miss most of them.
Getting past 5,000 rows (your ~8k scenario)
Since a single call caps at 5,000, retrieve the data in batches rather than one large request - for example use a Filter Query on an indexed column (such as your ID column) to pull ranges (IDs 1-5000, then 5001-8000), or page through with $skiptoken. Make sure the column you filter/index on is set as an indexed column in SharePoint to avoid throttling on large lists.
A reliable pattern: read the Excel rows (pagination on), build a lookup, then for each batch of SharePoint items compare IDs and only update matches and create new ones - rather than deleting and reloading everything.
References:
Found this helpful? Please mark ✅ "Does this answer your question?" so others searching for the same issue can find it quickly. A 👍 on "Was this reply helpful?" or a ♥ Like is also much appreciated!
Raghav Mishra - LinkedIn | PowerAI Labs