Forum Discussion
Ninjak
Jan 30, 2020Copper Contributor
Auto-Increment Number Field in a SharePoint List
I need to create an auto-increment field with a standard amount of digits. The format needs to be like this T000001, T000002, T000003, ......T000010, etc (7 Digits). When it gets to the 10th record i...
- Feb 01, 2020
Hi Keenan (Ninjak), this complex auto-increment can be achieved relatively easily using 2 lists in SharePoint and a flow in Power Automate. The result will look like this in the main list which I've called Crop Harvest:
You will need a second list (which I've called Increment) to hold the next value. In the result above I manually changed the value to show the difference based on the number, and I've manually changed it back to 9 for now but you will see that it will auto-increment in the flow. This second list will only ever have 1 item which is the next value to be used:
In the flow the trigger I've used is When an item is created in the SharePoint main list.
Next we get the 1 item from the Increment list, and the next action is to initialize a string variable which I've named varIncrementNumber:
The next action to add is a Compose control which I've named ComposeNext and you select Next value from the dynamic content box on the right. What you will see when you do this is that it wraps itself in an apply to each control. It does this because although there is only 1 item in the Increment list there could potentially be lots so it adds the apply to each. That's fine, it's expected and you don't try to delete it but just leave it there.
The next action is a condition. For this first condition we are only going to test if the output of the previous compose action is less than 10 (we'll do the others shortly):
If it IS less than 10 then in the If yes green channel we add an Append to string variable and in the value type T00000 immediately followed by the output of the ComposeNext selected from the dynamic content box on the right:
If the ComposeNext value isn't less than 10 then in the red If no channel you add another condition. In the left hand box select the Output from the ComposeNext from the dynamic content, select is greater than or equal to, and then in the right hand box type 10. Then add another row and do the same but make it less than 100.
Again, you'll get a green if yes channel and a red if no channel. In the green channel, as before, add an append to string variable action and this time in the value add T0000 and then the output of the ComposeNext:
In the red If no channel add another condition as before but make it greater than or equal to 100 and less than 1000.
You keep doing that - changing the number of leading zeros each time of course - until you get to the last condition which is if the output of the ComposeNext is greater than or equal to 10000 and less than 100000 then you will add an Append to string variable in both channels. In the green If yes channel it will be T0 plus the Output and in the red if no channel it will be just T plus the Output.
So we've got the right value with the T plus correct leading zeros in our variable now. The next action is still inside the apply to each but not inside any of the conditions. The action is a SharePoint Update item action and in the text column where you are storing the increment text value you select the string variable varIncrementNumber. You'll see I've also stored the actual numeric value number from the ComposeNext:
We're almost at the end now and the next action is to add a Compose and add 1 to the ComposeNext value. So for this we use an expression of add (outputs('ComposeNext'),1). Finally we use the output of that to update the Increment list:
Whatever value you have in the Increment list the flow will check that and apply the T and the correct number of zeros and then the increment value. It will take just 2 or 3 seconds to do this and to update the main list and the increment list.
That took far longer to write out and do the screenshots than it took to prepare the SharePoint lists and do the flow!!
Do come back with questions about any of this.
Rob
Los GallardosMicrosoft Power Automate Community Super User
RobElliott
Feb 01, 2020Silver Contributor
Hi Keenan (Ninjak), this complex auto-increment can be achieved relatively easily using 2 lists in SharePoint and a flow in Power Automate. The result will look like this in the main list which I've called Crop Harvest:
You will need a second list (which I've called Increment) to hold the next value. In the result above I manually changed the value to show the difference based on the number, and I've manually changed it back to 9 for now but you will see that it will auto-increment in the flow. This second list will only ever have 1 item which is the next value to be used:
In the flow the trigger I've used is When an item is created in the SharePoint main list.
Next we get the 1 item from the Increment list, and the next action is to initialize a string variable which I've named varIncrementNumber:
The next action to add is a Compose control which I've named ComposeNext and you select Next value from the dynamic content box on the right. What you will see when you do this is that it wraps itself in an apply to each control. It does this because although there is only 1 item in the Increment list there could potentially be lots so it adds the apply to each. That's fine, it's expected and you don't try to delete it but just leave it there.
The next action is a condition. For this first condition we are only going to test if the output of the previous compose action is less than 10 (we'll do the others shortly):
If it IS less than 10 then in the If yes green channel we add an Append to string variable and in the value type T00000 immediately followed by the output of the ComposeNext selected from the dynamic content box on the right:
If the ComposeNext value isn't less than 10 then in the red If no channel you add another condition. In the left hand box select the Output from the ComposeNext from the dynamic content, select is greater than or equal to, and then in the right hand box type 10. Then add another row and do the same but make it less than 100.
Again, you'll get a green if yes channel and a red if no channel. In the green channel, as before, add an append to string variable action and this time in the value add T0000 and then the output of the ComposeNext:
In the red If no channel add another condition as before but make it greater than or equal to 100 and less than 1000.
You keep doing that - changing the number of leading zeros each time of course - until you get to the last condition which is if the output of the ComposeNext is greater than or equal to 10000 and less than 100000 then you will add an Append to string variable in both channels. In the green If yes channel it will be T0 plus the Output and in the red if no channel it will be just T plus the Output.
So we've got the right value with the T plus correct leading zeros in our variable now. The next action is still inside the apply to each but not inside any of the conditions. The action is a SharePoint Update item action and in the text column where you are storing the increment text value you select the string variable varIncrementNumber. You'll see I've also stored the actual numeric value number from the ComposeNext:
We're almost at the end now and the next action is to add a Compose and add 1 to the ComposeNext value. So for this we use an expression of add (outputs('ComposeNext'),1). Finally we use the output of that to update the Increment list:
Whatever value you have in the Increment list the flow will check that and apply the T and the correct number of zeros and then the increment value. It will take just 2 or 3 seconds to do this and to update the main list and the increment list.
That took far longer to write out and do the screenshots than it took to prepare the SharePoint lists and do the flow!! Do come back with questions about any of this.
Rob
Los Gallardos
Microsoft Power Automate Community Super User
- Tan_Phan_BospritJan 21, 2022Copper Contributor
RobElliott Hi, many thanks for the insightful and inspiring explanation.
I would wonder if this short formula for a calculated column that should fix the issue
="T"&TEXT([Increment],"0000000")
Kind regards,
Tan
- JamesC007Nov 04, 2021Copper Contributor
I realize that this thread is over a year old. But I have had this bookmarked and attempted to make this work multiples times over the past 6 months. I finally was able to figure out where I went wrong and got it to work.
So after it finally working on a fresh list, I decided that I would bring in my already created log file and put all those logs in there and update my Increment list to be the next value. I then set my flow to be active. And it worked....but it keeps looping through my already created list values.
Where should I begin looking to stop the flow from auto running even though I have not clicked the create new in my sharepoint list? Please help as I have had over 2000 flows run in the last hour.
- BenLeach_EXPNov 04, 2021Brass Contributor
JamesC007. Rob's post was great, but since he wrote it, a new "FormatNumber" option became available which makes things much easier. I've screenshotted the following from a real working scenario we use internally:
First, set the AutoNumber variable and grab the current AutoNumber single List Item:
Then, in a For Each loop, increment the variable, and format using the Format Number action. Note the number format string is stored in the List, screenshot further down. (The Update Projects List Item just applies the current number to our separate project list)
Note that the way we do this is to store the next available number in our list, apply the next number, then increment afterwards.Finally, update the incremented number into the AutoNumber list item:
Note, the reason we're not getting any infinite loops is that we only trigger this whole flow when an item (or file, depending on list or library) is created. It is important to not use the "Created or Modified" otherwise the action that updates the number on your target document or list item will continually fire...you could use a Trigger condition to resolve that, but it's easier to just use the "is created" trigger.
If you needed to apply an auto-number as a one off to a historical set of list items, then you could create a separate flow with a manual trigger that you only run once, that filters all your items/documents then uses a foreach to apply the above logic. In that scenario you would need to make sure you set your loop concurrency to 1 only, to allow the number to increment correctly.
Quick look at the AutoNumber list, contains a single item as follows:
Note from above, the NumberFormat is a string value, in the above case "00000" indicating a 5 character length...add more or less zeros to determine the length of the string
Hope that helps
- BenHainsworthNov 07, 2022Copper ContributorThanks for posting this! I was able to follow along fairly easily, and it all makes sense once you see it run.
- Creighton_BarnesMar 24, 2021Brass ContributorBrilliant. That works like a champ, thanks!
- Jaison465Sep 23, 2020Copper Contributor
RobElliott - I wanted to thank you for this! This is excellent! I spent a few hours trying to get a similar situation to this to work and I couldn't get the variables to increment by 1. Just wanted to give you a virtual high five 🙂
- Asad_YousafAug 04, 2020Copper ContributorIs this available as a template?
- RobElliottAug 04, 2020Silver Contributor
Asad_Yousaf no you'd need to build it from blank.
Rob
Los Gallardos
Microsoft Power Automate Community Super User
- JesperTCJul 17, 2020Copper Contributor
RobElliott I have tried to set this up for a while, tried 3 times and done everything exactly, but it does not work.
I dont get an error when I try to test the workflow, it just does not work....
One thing is however different. Every time I set up the composenext, I get an additional step, without being able to remowe it. I cant see if you have that on your end as well, since you cut of the image 😞
- mcaleer1May 20, 2020Copper Contributor
Good morning,
I recently built this flow for creating lot numbers at our organization and ran into an issue where if 2 items are added very quickly then the same number is issued for both records.RobElliott
- RobElliottMay 20, 2020Silver Contributor
mcaleer1 yes, we've also run into the same problem. I'm still trying to work on a way to avoid this issue.
Rob
Los Gallardos
Microsoft Power Automate Community Super Use- mcaleer1May 20, 2020Copper Contributor
I also wanted to say thank you for the detailed instructions on how to build this flow. RobElliott
- GregPennefather33Apr 24, 2020Copper Contributor
Hi
Thanks for this, it looks almost exactly like what I need to do with one exception. I'm doing this for document numbers for projects. So my increment list is my list of projects. I have a next number column in the list.
So, before I create the string, I need to get the next value for the specific project. What action would I need to add (and where) in order to achieve this?
I;m most grateful for your help.
Best
Greg
- PriyankaJagarapuMar 18, 2020Copper Contributor
Hi,
Can you please tell me the column type of the NextValue field in Increment List?
Also I would like to know the Value to be given in Initialize Variable control for the varIncrementNumber.
- RobElliottMar 18, 2020Silver Contributor
PriyankaJagarapu I think your question might have been to me rather than the original poster. NextValue is a number column with decimal places set to 0. There's no initial value for the varIncrementValue so just leave it empty. All you're doing with that is to create the variable and it gets populated later in the flow.
Rob
Los Gallardos
Microsoft Power Automate Community User