So I select ENUM in my column and it gives me a dropdown of all the previous selections made in the past for that column. How do I sort this? I know I can sort this if I reference a different column, but since this is the same column how do I convince this to sort in my dropdown?
Solved! Go to Solution.
You need to use one of the below expression in the Valid_If or Suggested Values expression of your ENUM column.
SORT(SELECT(TableName[ColumnName],TRUE,TRUE),TRUE) // Sorts the selected column values in descending order
SORT(SELECT(TableName[ColumnName],TRUE,TRUE),FALSE) // Sorts the selected column values in ascending order
User | Count |
---|---|
24 | |
14 | |
4 | |
3 | |
3 |