Seperate Auto Numbering Based on Area Column
I have an auto number column which I know goes from 1-100 etc. I have projects in Locations North, South, East and West. Is there a way I can auto number based on each location so East is sequential, North is sequential, etc. By using the below formula it works fine but I end up with North 15 when it might be the 15th row entry but only the 2nd project in the North.
Hope that makes sense!
="ME_" + REGION@row + "_ALL_24_" + [AUTO NUMBER]
ME_NORTH_ALL_24_01
Best Answer
-
Try something like this instead:
="ME_" + REGION@row + "_ALL_24_" + RIGHT("00" + COUNTIFS(Region:Region, @cell = Region@row, [Auto Number]:[Auto Number], @cell<= [Auto Number]@row), 3)
Answers
-
Try something like this instead:
="ME_" + REGION@row + "_ALL_24_" + RIGHT("00" + COUNTIFS(Region:Region, @cell = Region@row, [Auto Number]:[Auto Number], @cell<= [Auto Number]@row), 3)
-
Feck that's cool! Thanks so much again Paul 🤗
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 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!