Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello everyone,
I need to calculate the net value with a few measures.
I can add more measures when a new Player comes. But it is not suitable.
how can I handle it?
Input
Send | Receive | Amount |
A | B | 100 |
A | C | 200 |
B | A | 50 |
B | C | 50 |
C | A | 100 |
C | B | 30 |
Calculation
Send | Receive | |||
A | B | C | Total Received | |
A | 100 | 200 | 300 | |
B | 50 | 50 | 100 | |
C | 100 | 30 | 130 | |
Total Sent | 150 | 130 | 250 | 530 |
Output
Send | Receive | Net Value | |
A | 300 | 150 | 150 |
B | 100 | 130 | -30 |
C | 130 | 250 | -20 |
Solved! Go to Solution.
Create a dimension table from your fact table like
People = DISTINCT( UNION(
ALLNOBLANKROW( VALUES('Table'[Send]),
ALLNOBLANKROW( VALUES('Table'[Receive])
))
then rename the column in the dimension table and create inactive one-to-many relationships from your new dimension table to both Send and Receive columns on your fact table. Always use the dimension table in your visuals.
You can then create 3 measures like
Total Sent = CALCULATE( SUM( 'Table'[Amount]), USERELATIONSHIP( 'People'[Person], 'Table'[Send]) )
Total Received = CALCULATE( SUM( 'Table'[Amount]), USERELATIONSHIP( 'People'[Person], 'Table'[Receive]) )
Net amount = [Total Sent] - [Total Received]
Thank you so much
It is brilliant 😊
Create a dimension table from your fact table like
People = DISTINCT( UNION(
ALLNOBLANKROW( VALUES('Table'[Send]),
ALLNOBLANKROW( VALUES('Table'[Receive])
))
then rename the column in the dimension table and create inactive one-to-many relationships from your new dimension table to both Send and Receive columns on your fact table. Always use the dimension table in your visuals.
You can then create 3 measures like
Total Sent = CALCULATE( SUM( 'Table'[Amount]), USERELATIONSHIP( 'People'[Person], 'Table'[Send]) )
Total Received = CALCULATE( SUM( 'Table'[Amount]), USERELATIONSHIP( 'People'[Person], 'Table'[Receive]) )
Net amount = [Total Sent] - [Total Received]
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
13 | |
11 | |
10 | |
7 | |
6 |
User | Count |
---|---|
13 | |
12 | |
12 | |
8 | |
8 |