Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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.)
Thanks in anticipation!
Solved! Go to Solution.
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
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
26 | |
24 | |
12 | |
11 | |
10 |