March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Register NowGet certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi,
I am showing in a Matrix the percentage of the valid supplier certificates (green + yellow against red) per center and i would like to show this only in the total section. The problem is that the measure is dispalyed and showing the same info multiple times (per Certificate status) as you can see it in the screen shot. How to remove the columns which i highlighted in red and keep only the one which i highlighted in green?
Solved! Go to Solution.
Hi @hdaoued ! Whenever you add a measure to the values box in a visual, Power BI always computes it for every available column (filtering context) and, to my knowledge, there is no way to customize or choose in which columns the measure will be computed. The work around I would do, would be something in the lines of:
1. In your "% of valid certificates" measures add a SWITCH() to show blank values in all rows except the total column (for example in my case I did it like this)
Avg Unit Price =
SWITCH(
TRUE(),
HASONEVALUE('Calendar'[Year]), BLANK(),
AVERAGE( Orders[UnitPrice] )
)
2. Go to the formatting pane of the visual -> Values -> Options -> Switch values to rows rather than columns
3. The end result will look something like this!
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Hi @hdaoued ! Whenever you add a measure to the values box in a visual, Power BI always computes it for every available column (filtering context) and, to my knowledge, there is no way to customize or choose in which columns the measure will be computed. The work around I would do, would be something in the lines of:
1. In your "% of valid certificates" measures add a SWITCH() to show blank values in all rows except the total column (for example in my case I did it like this)
Avg Unit Price =
SWITCH(
TRUE(),
HASONEVALUE('Calendar'[Year]), BLANK(),
AVERAGE( Orders[UnitPrice] )
)
2. Go to the formatting pane of the visual -> Values -> Options -> Switch values to rows rather than columns
3. The end result will look something like this!
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
116 | |
88 | |
78 | |
65 | |
59 |
User | Count |
---|---|
140 | |
122 | |
105 | |
94 | |
90 |