Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.
@Saswa_D use this:
SUMX (
RELATEDTABLE ( 'Master Table' ),
Master Table'[Cost Avoidance]- 'Master Table'[Loss]
)
@Saswa_D use this:
SUMX (
RELATEDTABLE ( 'Master Table' ),
Master Table'[Cost Avoidance]- 'Master Table'[Loss]
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.