Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Sorry for making a mockup data in excel. But I have column and row total in one Matrix visual (Actuals). Would like to calculate (Subtract) data from another dataset (Forcast). And get Delta (Actuals total - Forcast total)
Appreciate any help.
Solved! Go to Solution.
Hi @Anonymous,
If I understand correctly, you want to get the matrix visual like the screenshot below.
If so, you can write your measures like so:
Actual Row Total = SUMX ( Actual, Actual[Department 1] ) + SUMX ( Actual, Actual[Department 2] ) Forcast Row Total = SUMX ( Forcast, Forcast[Department 1] ) + SUMX ( Forcast, Forcast[Department 2] ) Forcast Row Total - Actual Row Total = Forcast[Forcast Row Total] - Actual[Actual Row Total]
Best Regards,
Icey Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous,
If I understand correctly, you want to get the matrix visual like the screenshot below.
If so, you can write your measures like so:
Actual Row Total = SUMX ( Actual, Actual[Department 1] ) + SUMX ( Actual, Actual[Department 2] ) Forcast Row Total = SUMX ( Forcast, Forcast[Department 1] ) + SUMX ( Forcast, Forcast[Department 2] ) Forcast Row Total - Actual Row Total = Forcast[Forcast Row Total] - Actual[Actual Row Total]
Best Regards,
Icey Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
There is a relationship between both the tables via region
I just want to calculate difference between a fixed value (AOP Q4) & Matrix calculated values of Total (Actuals + Commits). But a simple formula in excel is a complicated one in PowerBI
Hi @Anonymous ,
You can create your measure like so:
Delta = MAX ( 'Table 2'[AOP Q4] ) - ( MAX ( 'Table 1'[Actuals] ) + MAX ( 'Table 1'[Commits] ) )
In this DAX expression, [Actuals], [Commits] and [AOP Q4] are all columns. If they are measures in your file, 'MAX' is not needed.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
75 | |
68 | |
41 | |
35 |
User | Count |
---|---|
107 | |
56 | |
52 | |
48 | |
40 |