Forum Discussion
Anonymous
7 years agoNot applicable
Sort chart x axis custom
Hi I am in the education sector and trying to produce a chart which is sorted by a 15 point scale (A+ A A- .... E+ E E-) with the alphabetical descriptors and not numerical ones. The chart will...
- Anonymous7 years ago
Hi Anonymous
Try to sort Grade column manually by following way-
- Create a column by using the following DAX
Grade Sort = SWITCH(Table1[Grade_Base],"A+",1,"A",2,"A-",3,"B+",4,"B",5,"B-",6,"C+",7,"C",8,"C-",9,10)
2. Sort Grade Column by Grade sort(created column) under the modeling tab in ribon pallet.
For more details see the pbix file.
Regards,
Angad
Anonymous
7 years agoNot applicable
Hi Anonymous
Try to sort Grade column manually by following way-
- Create a column by using the following DAX
Grade Sort = SWITCH(Table1[Grade_Base],"A+",1,"A",2,"A-",3,"B+",4,"B",5,"B-",6,"C+",7,"C",8,"C-",9,10)
2. Sort Grade Column by Grade sort(created column) under the modeling tab in ribon pallet.
For more details see the pbix file.
Regards,
Angad
- 22LACMT3 years agoHelper III
how do you disable the auto sort feature on the visuals ?