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.
Hi There,
I am trying to create a calculated measure where i am taking difference from two columns(one is calculated measure and one is calculated column) which is avaiable in two different tables and they have Many to Many relationship .
Product | Table A (Amount in Rs) | Table B (Amount in Rs) | Difference |
Bag | 100 | 400 | 300 |
Bat | 200 | 100 | -100 |
Desrire Result i am looking for is column name "Difference"
Can anyone help me how to achieve this ??
Thanks ,
Ashish
Solved! Go to Solution.
Hi @ash_cool10 ,
Refer the below:
sumtablea = CALCULATE(SUM(TableA[value]),ALLEXCEPT(TableA,TableA[Product]))
sunmtableb = calculate(SUM(TableB[value]),ALLEXCEPT(TableB,TableB[Product]))
Relationship:
Difference:
Difference = [sumtablea]-LOOKUPVALUE(TableB[sunmtableb],TableB[Product],MAX(TableA[Product]))
Outputresult:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi @ash_cool10 ,
Refer the below:
sumtablea = CALCULATE(SUM(TableA[value]),ALLEXCEPT(TableA,TableA[Product]))
sunmtableb = calculate(SUM(TableB[value]),ALLEXCEPT(TableB,TableB[Product]))
Relationship:
Difference:
Difference = [sumtablea]-LOOKUPVALUE(TableB[sunmtableb],TableB[Product],MAX(TableA[Product]))
Outputresult:
Did I answer your question? Mark my post as a solution!
Best Regards
Lucien
Hi Lucien,
Thank you so much for your support. I tried and i got the result .
I appreicate your help.
Regards,
Ashish
@ash_cool10 use the same process that you do to create a calculated column and a measure
1. first create a calculated columns
2. create your first measure
3. then create your measure to calc difference between 1. calculated column 2. measure
in case you face any challenge, please sample data to create above calc
Proud to be a Super User!
Hi @negi007,
I tried creating the same but nothing is working out.
It gives error "a table of multiple values was supplied where a single value was expected" when i used Lookup value fucntion to call Calculated COlumn value inn Table 1.
Can you please elaborate some more?
Thanks.
A
@ash_cool10 why do you need to use lookup function. both tables are already linked to each other through relationship you have created as mentioned by you.
let say you first create a calculated column like
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
218 | |
88 | |
83 | |
65 | |
56 |