Announcements
Load Excel data Use List rows present in a table and reshape the output into a simple XML structure (<root><row>…</row></root>).
<root><row>…</row></root>
Load SharePoint list data Use Get items (with pagination) and convert the results into the same XML structure as Excel.
Use XPath to find NEW items Select rows that exist in Excel but not in SharePoint based on the key column.
Use XPath to find DELETED items Select rows that exist in SharePoint but not in Excel.
Use XPath to find CHANGED items Compare Excel and SharePoint rows with the same key and detect differences in one or more fields.
Chunk each result set into batches of 100 SharePoint REST API batch requests support up to 100 operations per batch, so split the XML nodes accordingly.
Build REST API batch payloads Create the $batch envelope containing the individual operations:
$batch
POST for creates
MERGE for updates
DELETE for deletions
Send batch requests to SharePoint Use Send an HTTP request to SharePoint with POST /_api/$batch and the multipart/mixed payload.
POST /_api/$batch
(Optional) Enable parallelism Run multiple batch groups at once to speed up processing for large datasets.
Log results Track how many items were created, updated, or deleted for easier monitoring and troubleshooting.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 377
11manish 279
David_MA 234 Super User 2026 Season 1