Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Creating a measure using two different column from different table

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 .

 

ProductTable A (Amount in Rs)Table B (Amount in Rs) Difference
Bag100400300
Bat200100-100

 

 

Desrire Result i am looking for is column name "Difference"

 

Can anyone help me how to achieve this ??

 

Thanks ,

Ashish

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

Hi  @Anonymous ,

Refer the below:

sumtablea = CALCULATE(SUM(TableA[value]),ALLEXCEPT(TableA,TableA[Product]))

vluwangmsft_0-1653378457547.png

sunmtableb = calculate(SUM(TableB[value]),ALLEXCEPT(TableB,TableB[Product]))

vluwangmsft_1-1653378475031.png

Relationship:

vluwangmsft_2-1653378488936.png

Difference:

Difference = [sumtablea]-LOOKUPVALUE(TableB[sunmtableb],TableB[Product],MAX(TableA[Product]))

Outputresult:

vluwangmsft_3-1653378572685.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

View solution in original post

5 REPLIES 5
v-luwang-msft
Community Support
Community Support

Hi  @Anonymous ,

Refer the below:

sumtablea = CALCULATE(SUM(TableA[value]),ALLEXCEPT(TableA,TableA[Product]))

vluwangmsft_0-1653378457547.png

sunmtableb = calculate(SUM(TableB[value]),ALLEXCEPT(TableB,TableB[Product]))

vluwangmsft_1-1653378475031.png

Relationship:

vluwangmsft_2-1653378488936.png

Difference:

Difference = [sumtablea]-LOOKUPVALUE(TableB[sunmtableb],TableB[Product],MAX(TableA[Product]))

Outputresult:

vluwangmsft_3-1653378572685.png

Did I answer your question? Mark my post as a solution!


Best Regards

Lucien

Anonymous
Not applicable

Hi Lucien,

 

Thank you so much for your support. I tried and i got the result .

 

I appreicate your help.

 

Regards,

Ashish

negi007
Community Champion
Community Champion

@Anonymous 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




Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

Anonymous
Not applicable

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

@Anonymous  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 

1. Profit_Est = Orders[Profit]*1.5
 
then you create a measure in the second table like below
2. Returns = sum(Returns[value])
 
then you create a measure like below
Profit_Returns = SUM(Orders[Profit_Est])-[Returns]
 
i hope it can direct you in the right direction. for exact help would it be possible for you to share your pbix file or data in text format. thanks
 



Did I answer your question? Mark my post as a solution!
Appreciate your Kudos



Proud to be a Super User!


Follow me on linkedin

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.