In UX Views, SortBy is overridden by GroupBy

I have a status column that returns a text status. The default sorting behavior is to sort text values alphabetically.

I want to display these status values in a strict order so, using a SWITCH statement, I created a virtual column that returns a number based on the text value. This VC is called StatusSort.

SWITCH([Status],
โ€œMISSING DATAโ€,1,
โ€œNEED INJUNSโ€,2,
โ€œREADY TO RELEASEโ€,3,
โ€œRELEASED TO PULLโ€,4,
โ€œCLOSE INJUNSโ€,5,
0)

In a table view, Iโ€™d like to sort based on the VC StatusSort BUT, group based on status.
Because both Sort By and Group by have the option to sort, the sorting of sort by is overridden by the group by sorting.

I realize I could prepend these statusโ€™ with a number and then the list would sort according to the leading number, but at times not all statusโ€™ will apply and those that do would seem to be missing the others.

This seems okay

  1. MISSING DATA
  2. NEED INJUNS
  3. READY TO RELEASE
  4. RELEASED TO PULL
  5. CLOSE INJUNS

Until it becomesโ€ฆ
2. NEED INJUNS
3. READY TO RELEASE
5. CLOSE INJUNS

Any suggestions as to how I can overcome this issue would be appreciated.

0 1 109
1 REPLY 1

Steve
Platinum 4
Platinum 4

Thatโ€™s the only option, Iโ€™m afraid.

Yep.

Top Labels in this Space