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 Team,
Need your help please.
I have two tables - Master Table and Target table:
Master Table:
Target table:
Now in Target table I want to calculate Target Column as:
Target Coumn= Efficiency benefit - 'Master Table'[Cost Avoidance]- 'Master Table'[Loss].
And the I can present the Target table in a matrix.
I have tried creating DAX using SUM and Related functions but it doesn't help.
SUM summarizes and returns one value whereas Related did not work at all.
Please anyone can help me here ?
Solved! Go to Solution.
@Anonymous use this:
SUMX (
RELATEDTABLE ( 'Master Table' ),
Master Table'[Cost Avoidance]- 'Master Table'[Loss]
)
@Anonymous use this:
SUMX (
RELATEDTABLE ( 'Master Table' ),
Master Table'[Cost Avoidance]- 'Master Table'[Loss]
)
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.