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 September 15. Request your voucher.

Reply
Sunshine123
Frequent Visitor

How to get the sum between two dates

Hello, 

I want to create a DAX or a column in order to get the sum between the date and minus 365 days. 

I have created three tables: 

1) Data Table

2) Sales Table 

3) Order in hand Table

I want to get the sum from the sales table for each row in the order in hand table. Therefore I have provided the start date (date Minus 365) and the end date (Date) 

I have tried serveral options like datesinperiod/datesbetween. 

15.06.png

Any suggestions? 

Kind Regards! 

  

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Sunshine123 ,

I created some data:

Order in hand Table:

vyangliumsft_0-1655715239542.png

Here are the steps you can follow:

1. Create measure.

Measure =
var _mindate=
MINX(FILTER(ALL('Sales Table'),'Sales Table'[Date Minus 365]>=MAX('Order in hand Table'[Date])),[Date Minus 365])
return
CALCULATE(
    SUM('Sales Table'[Sales]),FILTER(ALL('Sales Table'),'Sales Table'[Date Minus 365]=_mindate))

2. Result:

vyangliumsft_1-1655715239546.png

If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information, or Order in hand Table data.

 

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

1 REPLY 1
Anonymous
Not applicable

Hi  @Sunshine123 ,

I created some data:

Order in hand Table:

vyangliumsft_0-1655715239542.png

Here are the steps you can follow:

1. Create measure.

Measure =
var _mindate=
MINX(FILTER(ALL('Sales Table'),'Sales Table'[Date Minus 365]>=MAX('Order in hand Table'[Date])),[Date Minus 365])
return
CALCULATE(
    SUM('Sales Table'[Sales]),FILTER(ALL('Sales Table'),'Sales Table'[Date Minus 365]=_mindate))

2. Result:

vyangliumsft_1-1655715239546.png

If I have misunderstood your meaning, please provide your desired output and your pbix without privacy information, or Order in hand Table data.

 

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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