Start auto-numbering from a chosen row
Good morning everybody ;
As show in the picture below , I have a project schedule which starts from the row number 3 and I have a coulumn which contains auto-numbers ( Code livrable ) . But I want auto-numbering starting from the row number 3 whil row number 1 and number 2 remains empty .
Is that possible ?
Thanks in advance .
Best Answer
-
You would need to either manually enter it or use a formula in a text/number type of column. The formula would look something along the lines of...
="LIVR-" + IF(COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> "")) < 10, "000", IF(COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> "")) < 100, "00", IF(COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> "")) < 1000, "0"))) + COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> ""))
Enter that into Row 3 and then dragfill down.
Answers
-
You would need to either manually enter it or use a formula in a text/number type of column. The formula would look something along the lines of...
="LIVR-" + IF(COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> "")) < 10, "000", IF(COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> "")) < 100, "00", IF(COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> "")) < 1000, "0"))) + COUNTIFS(Livrables$3:Livrables@row, OR(@cell = "", @cell <> ""))
Enter that into Row 3 and then dragfill down.
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!