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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
draxicle1
Helper I
Helper I

Measure for Start and End Dates - Days Assigned Graph

Dear PBI community,

 

I have a Power Bi Measure question which I have seen called the “Events in Progress” problem. I've researched and tried to adapt various solutions I've found on this, but none quite fit my scenario. I am fairly new to Power BI and DAX so would appreciate any responses.

 

(This is a simplified version of my real world problem)

 

I have a table called P6_Planned, which is a list of activities, and a separate date table called CalendarTable.

 

P6_Planned contains columns called Activities (a line item name), Start (date), Finish (date), and a sum of Days Assigned (Finish - start +1). The dates are connected to the CalendarTable.

 

I am trying to create a measure that looks at a date and sums all the Days Assigned across ALL the activities, and takes into account the cumulative effect of overlaps. With this measure I would like to plot a graph with x-axis being dates and y-axis showing how many assigned days there are across all activities

 

I have a attached an illustration of what I’m trying to achieve. (Not sure how to attach the pbix file to this post.)

Events in Progress Visual.png

Thanks in anticipation!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @draxicle1 

 

Try the following measure

Measure = 
SUMX(
    CalendarTable,
    CALCULATE(
        COUNTROWS(P6_Planned),
        FILTER(
            P6_Planned,
            P6_Planned[Start] <= CalendarTable[Date]
            && P6_Planned[Finish] >= CalendarTable[Date]
        )
    )
)

 

This is the result you want

vjialongymsft_0-1706840703461.png

 

 

Best Regards,

Jayleny

 

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

2 REPLIES 2
Anonymous
Not applicable

Hi @draxicle1 

 

Try the following measure

Measure = 
SUMX(
    CalendarTable,
    CALCULATE(
        COUNTROWS(P6_Planned),
        FILTER(
            P6_Planned,
            P6_Planned[Start] <= CalendarTable[Date]
            && P6_Planned[Finish] >= CalendarTable[Date]
        )
    )
)

 

This is the result you want

vjialongymsft_0-1706840703461.png

 

 

Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

This is great. Thank you so much for your time. I have replicated this is my main model.

 

The only fly in the ointment (I learned from a recent meeting) is that I made the assumption that every day between the start and finish is actively being used on every activity in the list. Apparently there will be a new column that shows the amount of time (effort in hours)  used between those dates.  So I guess if you had 10 days duration, but only 24 hours of actual effort spread across those, you would have an average 2.4 hours showing every day.

 

Perhaps that's one for another post.

 

Thanks all the same.

 

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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.