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
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!