Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi everyone, need some help if possible with something.
I have this situation, where all the totals are right, but only the grand total is not good. There is any solution for it?
For this metrix, i have only used a sum of total, see below
Only this result is wrong. Maybe I think in the matrix, there are spaces for where there is no information and for them there will be 0.
If any can help with this one 🙂 Thanks a lot.
Solved! Go to Solution.
Hi @Gheb_Gabriela ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure 2 =
var _table1=
SUMMARIZE(
'Table','Table'[Group],"value",[Measure])
var _table2=
SUMMARIZE(
'Table','Table'[Group2],"value",[Measure])
return
IF(
NOT(ISINSCOPE('Table'[Group])),
SUMX(_table1,[value]),
IF(
NOT(ISINSCOPE('Table'[Group2])),SUMX(_table2,[value]),[Measure]))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Gheb_Gabriela ,
I created some data:
Here are the steps you can follow:
1. Create measure.
Measure 2 =
var _table1=
SUMMARIZE(
'Table','Table'[Group],"value",[Measure])
var _table2=
SUMMARIZE(
'Table','Table'[Group2],"value",[Measure])
return
IF(
NOT(ISINSCOPE('Table'[Group])),
SUMX(_table1,[value]),
IF(
NOT(ISINSCOPE('Table'[Group2])),SUMX(_table2,[value]),[Measure]))
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 46 | |
| 44 | |
| 29 | |
| 20 |
| User | Count |
|---|---|
| 202 | |
| 130 | |
| 102 | |
| 71 | |
| 55 |