Help with Syntax

I'm trying to get the sort order to group based on the "highlights", "lowlights", "risks", and "issues" but my only options are ascending or descending. I need a custom sort order... So I'm trying to hack it using a hidden column that uses numbers but it's showing up on the grouping when I use grouping...
And I'm struggling with the formula for creating the custom sort order so I can make it a column formula...
=IF([Type] = "Highlights", "1 - Highlights", IF([Type] = "Lowlights", "2 - Lowlights", IF([Type] = "Risks", "3 - Risks", IF([Type] = "Issues to be Escalated / Needs or Asks", "4 - Issues/Asks"))))
Best Answer
-
That's the way grouping works, so you are stuck with it appearing
For your column formula you will need to add @row to your column specifiers:
=IF([Type]@row = "Highlights", "1 - Highlights", IF([Type]@row = "Lowlights", "2 - Lowlights", IF([Type]@row = "Risks", "3 - Risks", IF([Type]@row = "Issues to be Escalated / Needs or Asks", "4 - Issues/Asks"))))
Answers
-
That's the way grouping works, so you are stuck with it appearing
For your column formula you will need to add @row to your column specifiers:
=IF([Type]@row = "Highlights", "1 - Highlights", IF([Type]@row = "Lowlights", "2 - Lowlights", IF([Type]@row = "Risks", "3 - Risks", IF([Type]@row = "Issues to be Escalated / Needs or Asks", "4 - Issues/Asks"))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 504 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!