Hi @Richard Duane Wolford Jr ,
I understand that you want to create a calculated column in SharePoint that generates a unique identifier for each row based on the year, month, day, and an incrementing number.
We can use the built-in ID column that SharePoint automaticaly assigns to each item in a list. This column is hidden by default, but you can make it visible in the current view. The ID column is a number that starts from 1 and increments by 1 for each new item. You can use this column as the basis for your calculated column.
To create your calculated column, follow these steps:
- Go to your SharePoint list and click on the settings gear icon. Select “List settings” from the drop-down menu.
- Under “Columns”, click on “Create column”.
- Give your column a name, such as “Ticket #”, and select “Calculated” as the column type.
- In the formula box, enter the following expression:
=TEXT(Created,"yyyy/dd/mm")&"-"&TEXT(ID,"000")
This formula will concatenate the year, month, and day of the item creation date with a dash and the ID number padded with zeros to make it three digits long. For example, if an item was created on September 01, 2022 and its ID was 1, the formula would return “2022/01/09-001”.
If you want the ID to count from 100, but the built-in ID column is 1, you can use the following formula (add "+99" , change it as you see fit)
=TEXT(Created,"yyyy/dd/mm")&"-"&TEXT(ID+99,"000")
The formula would return “2022/01/09-100”.
- Click on “OK” to save your column.
Hope the information can help you. And if there have any unclear or misunderstanding, please feel free to post back and we’ll continue to help you all the time!
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.