Auto number column in SharePoint list

后端 未结 9 1743
名媛妹妹
名媛妹妹 2021-02-01 15:52

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?

9条回答
  •  没有蜡笔的小新
    2021-02-01 16:42

    If you want to control the formatting of the unique identifier you can create your own in SharePoint. MSDN also has a visual How-To. This basically means that you're creating a custom column.

    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.

    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 (="CUST" & [ID]). I haven't tried this, but this should work :)

提交回复
热议问题