Forum Discussion
BagsOfSand
Jul 04, 2024Copper Contributor
Maximum value for SharePoint List unique ID
Hi everyone, I have a SharePoint List that gets updated daily. I have 25000-30000 items that get completely deleted every night and then created again with new values and content. So every new i...
PankajBadoni
Sep 12, 2025Iron Contributor
Hi BagsOfSand,
There’s no explicit confirmation from Microsoft about the maximum value of the SharePoint List ID column. However, since the ID is of type Counter, which maps to a 32-bit signed integer, and SharePoint uses SQL Server as its backend (where int is 32-bit), the practical limit is 2,147,483,647. At a rate of 30,000 new items per day, it would take approximately 196 years to reach that limit—so there's no realistic risk of overflow.
---------------------------------------------------------------------------------
If this response was helpful, kindly consider marking it as the accepted answer.