Using custom value for auto-number in primary field.
Scott S
✭✭
I read an old post that said use =[Row ID]1 to copy an automated sequence number in to the field specified. I want more that than just 1,2,3. I would prefer V00001, V00002 etc.. to increment for each new row. Is that possible?
Tags:
Answers
-
You could do:
="V" + [RowID]@row
This will give you V1, V2, V22, V100. If you want leading 0s you'll need to do a bunch of connected IF statements (I think) to check for how big the number is. An example of the start of that formula would be:
=IF([RowID]@row < 10, "V0000" + [RowID]@row, IF([RowID]@row < 100, "V000" + [RowID]@row))
etc, etc
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!