I have a table with 5 fields with a column containing the following:
Medium High Low
If I sort in ascending order the data sorts in alphabetical order:
High Low Medium
In the advanced editor how do I change the code in PowerQuery so that it sorts like the below:
High Medium Low
My current syntax in the editor is this:
Table.Sort(#"Filtered Rows",{{"Rating", Order.Ascending}})