Auto number column in SharePoint list

后端 未结 9 1549
名媛妹妹
名媛妹妹 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:21

    I had this issue with a custom list and while it's not possible to use the auto-generated ID column to create a calculated column, it is possible to use a workflow to do the heavy lifting.

    I created a new workflow variable of type Number and set it to be the value of the ID column in the current item. Then it's simply a matter of calculating the custom column value and setting it - in my case I just needed the numbering to begin at 100,000.

    enter image description here

提交回复
热议问题