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
nicomathers
Frequent Visitor

Count values in consecutive months until a certain date is met

In Power BI desktop, how to count the rows or values from the start date up to the filled date?

For example, my data is like this:

nicomathers_0-1686087803375.png

I want to create a column chart that would show the count of all open req numbers from Open Date up to the Fill date. So for the table above, the req number should show 1 from 12/1/2021 up to 6/10/2022 and when I select the months beyond the fill date, the number should be 0 since the fill date was met already like the chart below.

nicomathers_1-1686088016895.png

 

I don't have any code or dax formula to share right now cause I haven't done anything yet and I honestly don't know how to start.

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @nicomathers 
You have to create a disconnected date table and measure like :

NEW Recks = calculate(
                                           count(table[req_number]),
                                           Filter (
                                           table,
                                          table[open_Date] <= calculate(max(datetable1[date]) ) &&
                                          table[fill_Date] >= calculate(min(DateTable1[Date]))))
please see a linked discussion for more details:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

 

View solution in original post

3 REPLIES 3
Ritaf1983
Super User
Super User

Hi @nicomathers 
You have to create a disconnected date table and measure like :

NEW Recks = calculate(
                                           count(table[req_number]),
                                           Filter (
                                           table,
                                          table[open_Date] <= calculate(max(datetable1[date]) ) &&
                                          table[fill_Date] >= calculate(min(DateTable1[Date]))))
please see a linked discussion for more details:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

 

This is perfect! Thank you so much for your help.

I'm happy to help 🙂

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.