Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Lets say I have column chart where:
- Value is "Count Distinct of a column ID" (with duplicates thus distinct count)
- Axis is column B with categories
How can I sort this graph based on the Value (Distinct Count of IDs)?
I do not want to modify the table to remove duplicates as it contains other columns with information and also has relations to a different table.
I do not want to create another table with deduplicated IDs for this graph as I would not be able to have all the relations that I'm using on a different column.
Solved! Go to Solution.
HI @Exanimis,
Add a calculated column to calculate distinct count based on current group, then use sort by column function to use this calculated column as sort column of column who used on value field.
Sort by column in Power BI Desktop
Regards,
Xiaoxin Sheng
HI @Exanimis,
Please modify your type column to text type, it seems like default sort feature disabled when you use numeric value as axis.
For this scenario, you not need calculate column anymore.
Regards,
Xiaoxin Sheng
HI @Exanimis,
Add a calculated column to calculate distinct count based on current group, then use sort by column function to use this calculated column as sort column of column who used on value field.
Sort by column in Power BI Desktop
Regards,
Xiaoxin Sheng
Actually there was a problem with your solution. It does not sort it at all or returns an error. Let me give you an example.
DATA:
Sort:
Calculated column:
HI @Exanimis,
Please modify your type column to text type, it seems like default sort feature disabled when you use numeric value as axis.
For this scenario, you not need calculate column anymore.
Regards,
Xiaoxin Sheng
Thank you for help, really nice and easy solution. Not sure why I did not think of that 🙂
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 22 | |
| 21 | |
| 13 |
| User | Count |
|---|---|
| 66 | |
| 56 | |
| 45 | |
| 44 | |
| 30 |