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
bklyn3
Advocate II
Advocate II

Using DAX for a running sum based on dates

Hello 


I have a table with OrderID, Order_Date and Ship_Date. 

I am trying to add a column with the number of Open order (i.e. ordered but not yet ship) at the day a new order is placed. 
That is at the end of day  1/1/20 only 1 order is opened, On 1/2/20 two ordered are opened but on 1/3 only 1 remains open at the end of the day. 
The end goal is to plot hte number of open orders vs. Time. 

 

OrderIDOrder_Date Ship_DateOpen Order

1100

1/1/201/3/201
11021/2/201/3/202
11031/3/201/5/201
11041/4/201/7/203
11051/4/201/8/203

 

What would be the DAX function to create the "Open Order" Column. 

Thank you



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

Hi, @bklyn3 ;

You could create a measure,

Measure = CALCULATE(COUNT('Table'[OrderID]),FILTER(ALL('Table'),[Order_Date ]<=MAX('Table'[Order_Date ])&&[Ship_Date]>MAX('Table'[Order_Date ])))

The final output is shown below:

vyalanwumsft_0-1655100844873.png


Best Regards,
Community Support Team _ Yalan Wu
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
v-yalanwu-msft
Community Support
Community Support

Hi, @bklyn3 ;

You could create a measure,

Measure = CALCULATE(COUNT('Table'[OrderID]),FILTER(ALL('Table'),[Order_Date ]<=MAX('Table'[Order_Date ])&&[Ship_Date]>MAX('Table'[Order_Date ])))

The final output is shown below:

vyalanwumsft_0-1655100844873.png


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

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.