Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Dear Team,
The row subtotal in the matrix is displaying wrong summation values for columns with negative values.
Please have a look at the below table. Could you please let me know how to resolve this?
Hi @AsihwaryaS , in this case what's the desired total? Should it be the sum of all rows? Currently, Power BI is replicating the summarization, which means that it's recalculating the "bud %" for all values.
Also, please share some data sample if you can, to help solving the issue 🙂
If you need any additional help please @ me in your reply.
Thanks!
Best regards,
Joao Ribeiro
Hello,
The desired total would be -9.20% for Bud% and 30.0% for LY%
Normal summation of all the values in a column
Regards,
Aishwarya S
Hi @AsihwaryaS , thank you.
In this case, you can use the IF(ISINSCOPE()) to check if you are in a line or in the total, and if you're in the total you consider the sum instead of the normal calculation. Please, consider the code below as starting point, replicate for the LY%, and adjust as you need:
bud % sum =
IF(
// Check if it is in the item lines, if so, consider the normal 'bud %' measure
ISINSCOPE('Table'[Item]),
[bud %],
// If it is not in the lines, consider the sum of the lines
SUMX('Table', [bud %])
)
Example of result:
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!
Best regards,
Joao Ribeiro
Hi,
I applied the above formula but my total is blank, not sure if its because my values are in percentage
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |