Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
I want to remove subtotal for specific rows in matrix. I have a conditionall rule which change the font color if value is greater than 20 but it highlights the totals in the upper level of skill matrix.
is there any way to remove total from Year and months and keep only the total for the of the person level? With the options off when i toggle the year the total is removed correclty but when i close the level the total is appearing again.
Solved! Go to Solution.
Hi @kala2 ,
After replacing the created measure with the value in the matrix, you need to set the conditional judgment in the conditional formatting to be effective.
just like:
If there are still problems, please provide a test data model (delete sensitive information), otherwise no further testing can be done if only screenshots are provided.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kala2 ,
I think you can create a measure and use HASONEVALUE to make conditional judgments to achieve the results you expect. The reference is as follows:
M =
IF (
HASONEVALUE ( 'Table'[Month] ),
MAX ( 'Table'[Value] ),
CALCULATE ( SUM ( 'Table'[Value] ), ALLEXCEPT ( 'Table', 'Table'[Year] ) )
)
If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @v-henryk-mstf , thanks for the info!
I have applied your measure. I made some modifications in your measure. I changed the MAX to SUM since i want the sum of all the values. Below is the changed measure:
Hi @kala2 ,
After replacing the created measure with the value in the matrix, you need to set the conditional judgment in the conditional formatting to be effective.
just like:
If there are still problems, please provide a test data model (delete sensitive information), otherwise no further testing can be done if only screenshots are provided.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
89 | |
85 | |
66 | |
52 | |
31 |
User | Count |
---|---|
121 | |
113 | |
73 | |
65 | |
46 |