The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi, how can i make a matrix look like this in PBI? i have uploaded a file here so you can see how i want it to show in PBI.
The tab that says original is the data and the table that says "Should Look Like This in PBI" is how i want it to be in PBI. I know how to do this in excel but i want this to be in PBI. Hope u can help me. Data is here: https://transferxl.com/00jpbsPmZgWy7t
Thanks 🙂
Solved! Go to Solution.
Hi, @Migscruz , you might want to refer to the attached file for the method. Have fun!
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi, @Migscruz , you might want to refer to the attached file for the method. Have fun!
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
To do this, you will likely need to make a 2nd disconnected table of your column values (A..Z). To get it to show in just one half of the matrix, you need some way to compare the row and column values, and use an IF along the line of = IF(MIN(Table1[Letter])<= MIN(Table2[Letter]), [Your Expression], "-")
Depending on what your expression is, you will likely need to use TREATAS() to pass the filter (column header value) from Table2 to Table1 for your calculation.
If your rows/columns are actual letters, that should work. If not, you can have a Sort Order column on both and use that column in the MIN comparisons.
You can make the 2nd disconnected table with something like
Table2 = DISTINCT(Table1[Letters])
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
107 | |
77 | |
71 | |
47 | |
39 |
User | Count |
---|---|
136 | |
108 | |
70 | |
64 | |
57 |