Auto number column in SharePoint list - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T13:58:45Zhttp://stackoverflow.com/feeds/question/72537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list2Auto number column in SharePoint list78lro2008-09-16T13:58:03Z2009-04-24T16:07:10Z
<p>Hi,</p>
<p>In a SharePoint list I want an auto number column that as I add to the list gets incremented. How best can I go about this?</p>
<p>All the best
Kieran</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/72569#725691Answer by Kevin for Auto number column in SharePoint listKevin2008-09-16T14:00:58Z2008-09-16T14:00:58Z<p>it's in there by default. It's the id field.</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/72583#725832Answer by MrHinsh for Auto number column in SharePoint listMrHinsh2008-09-16T14:01:38Z2008-09-16T14:01:38Z<p>You can't add a new unique auto-generated ID to a SharePoint list, but there already is one there! If you edit the "All Items" view you will see a list of columns that do not have the display option checked.</p>
<p>There are quite a few of these columns that exist but that are never displayed, like "Created By" and "Created". These fields are used within SharePoint, but they are not displayed by default so as not to clutter up the display. You can't edit these fields, but you can display them to the user. if you check the "Display" box beside the ID field you will get a unique and auto-generated ID field displayed in your list.</p>
<p>Check out: <a href="http://blog.hinshelwood.com/archive/2008/01/11/unique-id-in-sharepoint-list.aspx" rel="nofollow">Unique ID in SharePoint list</a></p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/72641#726416Answer by BrewinBombers for Auto number column in SharePoint listBrewinBombers2008-09-16T14:05:52Z2008-09-16T14:05:52Z<p>Sharepoint Lists automatically have an column with "ID" which auto increments. You simply need to select this column from the "modify view" screen to view it.</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/72940#729400Answer by 78lro for Auto number column in SharePoint list78lro2008-09-16T14:30:39Z2008-09-16T14:30:39Z<p>Thanks for this.</p>
<p>How about if you need a specific format of unique identifier, any idea's?</p>
<p>All the best
Kieran</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/73422#734222Answer by dariom for Auto number column in SharePoint listdariom2008-09-16T15:14:43Z2008-09-16T15:14:43Z<p>If you want to control the formatting of the unique identifier you can <a href="http://msdn.microsoft.com/en-us/library/ms415141.aspx" rel="nofollow">create your own in SharePoint</a>. MSDN also has a <a href="http://msdn.microsoft.com/en-us/library/bb684919.aspx" rel="nofollow">visual How-To</a>. This basically means that you're creating a custom column.</p>
<p>WSS defines the Counter field type (which is what the ID column above is using). I've never had the need to re-use this or extend it, but it should be possible.</p>
<p>A solution might exist without creating a custom . For example: if you wanted unique IDs like CUST1, CUST2, ... it might be possible to create a Calculated column and use the value of the ID column in you formula (<code>="CUST" & [ID]</code>). I haven't tried this, but this <em>should</em> work :)</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/79813#798131Answer by Sam Yates for Auto number column in SharePoint listSam Yates2008-09-17T03:55:19Z2008-09-17T03:55:19Z<p>If you want something beyond the ID column that's there in all lists, you're probably going to have to resort to an Event Receiver on the list that "calculates" what the value of your unique identified should be or using a custom field type that has the required logic embedded in this. Unfortunately, both of these options will require writing and deploying custom code to the server and deploying assemblies to the GAC, which can be frowned upon in environments where you don't have complete control over the servers.</p>
<p>If you don't need the unique identifier to show up immediately, you could probably generate it via a workflow (either with SharePoint Designer or a custom WF workflow built in Visual Studio).</p>
<p>Unfortunately, calculated columns, which seem like an obvious solution, won't work for this purpose because the ID is not yet assigned when the calculation is attempted. If you go in after the fact and edit the item, the calculation may achieve what you want, but on initial creation of a new item it will not be calculated correctly.</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/83293#832931Answer by sbrickey for Auto number column in SharePoint listsbrickey2008-09-17T13:37:02Z2008-09-17T13:37:02Z<p>As stated, all objects in sharepoint contain some sort of unique identifier (often an integer based counter for list items, and GUIDs for lists).</p>
<p>That said, there is also a feature available at <a href="http://www.codeplex.com/features" rel="nofollow">http://www.codeplex.com/features</a> called "Unique Column Policy", designed to add an other column with a unique value. A complete writeup is available at <a href="http://scothillier.spaces.live.com/blog/cns!8F5DEA8AEA9E6FBB!293.entry" rel="nofollow">http://scothillier.spaces.live.com/blog/cns!8F5DEA8AEA9E6FBB!293.entry</a></p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/88778#887780Answer by Bryan Friedman for Auto number column in SharePoint listBryan Friedman2008-09-17T23:52:33Z2008-09-17T23:52:33Z<p>Although the "ID" value is not available to be used in a Calculated field, depending on the data, you may also be able to use some sort of concatenation of other fields to create a unique identifier. In particular, the Date fields like Created and Modified could potentially be used for something like this.</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/91042#910420Answer by 78lro for Auto number column in SharePoint list78lro2008-09-18T08:54:44Z2008-09-18T08:54:44Z<p>Thanks for the suggestions everyone, I've been looking at the list ID as a potential solution but I see this is only unique within the list, not within the Site Collection.</p>
<p>How might you go about generating a unique id for every document that is added to the site collection?</p>
<p>All the best
Kieran</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/105826#1058261Answer by spdevsolutions for Auto number column in SharePoint listspdevsolutions2008-09-19T21:35:01Z2008-09-19T21:35:01Z<p>So I am not sure I can really think of <em>why</em> you would actually need a "site collection unique" id, so maybe you can comment and let us know what is actually trying to be accomplished here...</p>
<p>Either way, all items have a UniqueID property that is a GUID if you <strong>really</strong> need it: <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.uniqueid.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.uniqueid.aspx</a></p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/261276#2612760Answer by Moorthy A for Auto number column in SharePoint listMoorthy A2008-11-04T08:47:47Z2008-11-04T08:47:47Z<p>Hi,</p>
<pre><code> We can get ID field in calculated column as below
</code></pre>
<p>Just copy past below formula into calculated field area </p>
<p>="ProductID"&[ID]</p>
<p>-Moorthy A</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/266284#2662840Answer by Chavez for Auto number column in SharePoint listChavez2008-11-05T19:31:45Z2008-11-05T19:31:45Z<p>Hello,</p>
<p>The ="ProductID"&[ID] works expect when you try add a new task. It gives you a value of 0, but if you go back and re-create the column it will work. Does anyone know why this is?</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/356066#3560660Answer by bru for Auto number column in SharePoint listbru2008-12-10T13:39:08Z2008-12-10T13:39:08Z<p>Same conclusion ...
"=SUM(1000,ID)" ID always worth 0 !!
ID is not initialised apparently
And I don't know why (is this a bug?)</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/359377#3593770Answer by JCH for Auto number column in SharePoint listJCH2008-12-11T13:42:26Z2008-12-11T13:42:26Z<p>Got the same pb !</p>
<p>I suppose that a bug, because when you create a new item, the ID is not yet define, so when SPS calculate the fields you got a blank instead of the ID... and will never apply it against you update the column definition in the field lists administration...</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/387364#3873640Answer by shravan for Auto number column in SharePoint listshravan2008-12-22T21:09:23Z2008-12-22T21:09:23Z<p>"The ="ProductID"&[ID] works expect when you try add a new task. It gives you a value of 0, but if you go back and re-create the column it will work. Does anyone know why this is?"</p>
<p>But why in the hell after re-creating the column it shows the correct data rather then just saving it again. </p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/448665#4486650Answer by sherminator for Auto number column in SharePoint listsherminator2009-01-15T22:07:37Z2009-01-15T22:07:37Z<p>Try this forum, it works!!</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/867bcacd-d378-411a-849a-fc040de9e5da/?ppud=4#page:1" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/867bcacd-d378-411a-849a-fc040de9e5da/?ppud=4#page:1</a></p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/489541#4895410Answer by peetha for Auto number column in SharePoint listpeetha2009-01-28T21:47:55Z2009-01-28T21:47:55Z<p>try to create a SPD workflow to papulate ID value into a another calculated filed(this field will have ID), and do cancatnation using calculated filed formula, it will give the how you want the unique value in sharepoint list</p>
<p>here using work flow , on item creation workflow will trigger and value will be dispalied in t your calculated filed</p>
<p>Peetha...</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/606872#6068720Answer by Emby for Auto number column in SharePoint listEmby2009-03-03T15:36:29Z2009-03-03T15:36:29Z<p>So I've added the ID field by modifying the views that I'm using - now is there a way to change the ID field to ID(link to item)? I thought there was a way to do this, but I'm not finding it in MOSS 2007.
Thanks,
Emby</p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/786529#7865290Answer by Marlon for Auto number column in SharePoint listMarlon2009-04-24T16:07:10Z2009-04-24T16:07:10Z<p>Peetha has the best idea, I've done the same with a custom list in our SP site. Using a workflow to auto increment is the best way, and it is not that difficult. Check this website out: <a href="http://splittingshares.wordpress.com/2008/04/11/auto-increment-a-number-in-a-new-list-item/" rel="nofollow">http://splittingshares.wordpress.com/2008/04/11/auto-increment-a-number-in-a-new-list-item/</a></p>
<p>I give much appreciation to the person who posted that solution, it is very cool!!</p>