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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

DAX Measure for totl SUM between two dates

Hello guys,

 

I'm pretty new to DAX and whant a measure that calculates the value of declaraties.The hard thing to me are the arguments:

 

The measure must calculate only the values where the time between the date of declaration (Fact Table Column enddate) and the start date (Fact Table Colum startdate) is not bigger than 2 years.

 

How can help me out?

 

Kind regards.

 

PS. the datemodel has a fact and a date table

1 ACCEPTED SOLUTION
v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

Based on my test, you could refer to below steps:

Sample data:

1.PNG

Create a calculated column:

Date diff = DATEDIFF('Table1'[Start Date],'Table1'[End Date],DAY)/365

2.PNG

Create a measure and you could see the result:

Sum Value = CALCULATE(SUM('Table1'[Value]),FILTER('Table1','Table1'[Date diff]<=2))

5.PNG

You could also download the pbix file to have a view:

https://www.dropbox.com/s/mn30j112ecqvo1b/DAX%20Measure%20for%20totl%20SUM%20between%20two%20dates.pbix?dl=0

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
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

3 REPLIES 3
v-danhe-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

Based on my test, you could refer to below steps:

Sample data:

1.PNG

Create a calculated column:

Date diff = DATEDIFF('Table1'[Start Date],'Table1'[End Date],DAY)/365

2.PNG

Create a measure and you could see the result:

Sum Value = CALCULATE(SUM('Table1'[Value]),FILTER('Table1','Table1'[Date diff]<=2))

5.PNG

You could also download the pbix file to have a view:

https://www.dropbox.com/s/mn30j112ecqvo1b/DAX%20Measure%20for%20totl%20SUM%20between%20two%20dates.pbix?dl=0

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hey @v-danhe-msft 

 

How would the structure of DAX change if I say that my end date is in a differen table?

I have to sum the demand for a part during the timeline of RTS_date + 90. For example a part X has an RTS 01/01/2000 then I have to calculate the total demand for this part using period from demand table which is RTS date + 90 days. SO basically sum the demand from demand table where the period is before 03/01/2000(assumed 30 days each month)

 

I have attached the table pic for two different tables.

Demand Table:

date_dax1.JPGdate_dax.JPG

Anonymous
Not applicable

Thanks Daniel! It works :):)

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.