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
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!