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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

DAX Measure for Subtracting columns from different tables (related by the dates table)

Hi there,

Its my first post, pls tell me when you need further Information.

Problem: there are two tables related by the dates table. Actual Cost is based on specific dates (e.g.: 01.05.2022; with duplicates), Expected Cost is based on Year Quarter (e.g.: 2022 Q2; no duplicates). I want to know the difference between expected and actual cost based on Year Quarter. Both tables are related to the Dates table (see picture). 

 

OverwhelmedGuy_1-1664439384445.png

 

i fooled around with sumx and related, but didn't really have any major breakthroughs. any idea how to solve this?

 

Thanks for helping

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Anonymous Maybe:

 

Measure =
  VAR __YearQuarter = MAX('Dates'[Year Quartal])
  VAR __Expected = MAXX(FILTER('Expected Cost',[Year Quarter] = __YearQuarter),[Prediction Sales])
  VAR __Actuals = SUM('Actual Cost'[Total Value])
RETURN
  __Expected - __Actuals
  

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@Anonymous Maybe:

 

Measure =
  VAR __YearQuarter = MAX('Dates'[Year Quartal])
  VAR __Expected = MAXX(FILTER('Expected Cost',[Year Quarter] = __YearQuarter),[Prediction Sales])
  VAR __Actuals = SUM('Actual Cost'[Total Value])
RETURN
  __Expected - __Actuals
  

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Awesome! Dose the Job i guess 🙂 

However i coud observe something interesting, when totaling the measure (which i will not need):

 

- Everything looks fine, when selecting Q1 and Q2

OverwhelmedGuy_0-1664448152363.png

- The total gets an negative value, when also selecting Q3. showing the Value of Q3 - (Q1 + Q2)

OverwhelmedGuy_1-1664448304033.png

- When adding Q4 the total is positve again, but way to low.


I see there is a long way for me to understand dax. however your anser fixed my problem!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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