We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I have a matrix column with headings Annual, Month, MTD, YTD. I want to sort them in custom order. Please can someone help. Thank you.
Solved! Go to Solution.
@bml123 Create your sort column in Power Query to avoid DAX circular dependency errors.
@bml123 ,If the are individual measure/column. We can move up and down.
If they are values of a column
Create a column like this
Sort =Switch( True() ,
col1 ="Annual", 1,
col1= "Month", 2,
col1="MTD", 3,
col1="YTD",4)
Create a sort column and mark that sort column.
https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column
I have created a sort column and when I try to sort my matrix column with the sort column, it is giving circular dependency error.
@bml123 , to Avoid That
Assum col is your main column
Col1 = col
Col Sort = <Logic>
Sort Col1 on Col Sort and Use Col1 in your UI. You can Hide Col.
I followed your steps exactly and still getting circular dependency error. Please can you help.
@bml123 Create your sort column in Power Query to avoid DAX circular dependency errors.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 33 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 41 | |
| 34 | |
| 24 |