cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors