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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Subtract two tables values based on two different slicer values

We've a requirement to display the difference of two measure fields. Shared example for your reference :

 

pranay2k2_1-1726070071883.png

Your cooperation in this regard will be highly appreaciated. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Anonymous ,

 

Here are the steps you can follow:

1. Create measure.

Measure =
var _selecttable2=SELECTEDVALUE('Table2'[Month])
var _sumtable2=SUMX(
    FILTER(ALL('Table2'),'Table2'[Month]=_selecttable2&&'Table2'[Client]=MAX('Table1'[Client ID])),[Sales])
return
SUM('Table1'[Sales]) - _sumtable2

2. Result:

vyangliumsft_0-1726104413184.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Thanks for providing quick solution. Implemented this logic and it worked as expected.

Anonymous
Not applicable

Hi  @Anonymous ,

 

Here are the steps you can follow:

1. Create measure.

Measure =
var _selecttable2=SELECTEDVALUE('Table2'[Month])
var _sumtable2=SUMX(
    FILTER(ALL('Table2'),'Table2'[Month]=_selecttable2&&'Table2'[Client]=MAX('Table1'[Client ID])),[Sales])
return
SUM('Table1'[Sales]) - _sumtable2

2. Result:

vyangliumsft_0-1726104413184.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.