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"))))