Is there a way to add new unique auto-generated ID for every new item added to a custom list? I would like the numbering to start at 300 as I will be uploading data to the list which already have been allocated a unique ID.
Many thanks
Is there a way to add new unique auto-generated ID for every new item added to a custom list? I would like the numbering to start at 300 as I will be uploading data to the list which already have been allocated a unique ID.
Many thanks
List already had an auto Id field. This starts at 1 and auto increment as new entry is added.
You can create a calculated field and use a formula like
= 300 + [Id]
Id in calculated columns is not reliable: http://sharepoint.stackexchange.com/questions/22977/how-to-use-calculated-field-to-retrieve-the-id-of-the-item-in-the-sharepoint-200
– Robert Lindgren
May 24 '16 at 14:22