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 PowerBI Community,
I am putting together a simple matrix table that compares actuals to budget. When I create a matrix table all of the subtotals and grand total equal in each column. This is the dax measure I am using for the first column "acutals":
Thanks,
Tim
Solved! Go to Solution.
Hi @tgibble
This has to do with the context you have, you need to place the filters inside the total sum you need and not in the SUMX try the following code:
Actuals =
SUMX (
'DataLoad-Wando Fiancials',
CALCULATE (
SUM ( 'DataLoad-Wando Fiancials'[ConvertedValue] ),
'DataLoad-Wando Fiancials'[Iteration] = "Actual",
'DataLoad-Wando Fiancials'[Cost Type] <> "Ad Hoc"
)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThanks, MFelix!! This worked!!
Hi @tgibble
This has to do with the context you have, you need to place the filters inside the total sum you need and not in the SUMX try the following code:
Actuals =
SUMX (
'DataLoad-Wando Fiancials',
CALCULATE (
SUM ( 'DataLoad-Wando Fiancials'[ConvertedValue] ),
'DataLoad-Wando Fiancials'[Iteration] = "Actual",
'DataLoad-Wando Fiancials'[Cost Type] <> "Ad Hoc"
)
)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsThe Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 35 | |
| 34 | |
| 28 |
| User | Count |
|---|---|
| 134 | |
| 101 | |
| 71 | |
| 67 | |
| 65 |