The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have items with different start and end dates. There are 10 days between the earliest start date and the latest end date.
For the sake of this example let's say the total number of items is 100.
I would like to show projected percentage completion if they were to be completed in equal chunks within those 10 days on a chart. On X axis it should start with the earliest start date and end with the latest end date. The line chart should start at 0% and end at 100%.
What kind of measure can I create to show this dynamically?
This is what I am trying to show:
Solved! Go to Solution.
Hi @Zalina ,
Please have a ty.
Projected Completion % =
VAR TotalItems = 100
VAR DaysBetweenStartAndEnd = 10
VAR DaysSinceStart = DATEDIFF(MIN('Table'[Start Date]), MAX('Table'[End Date]), DAY)
VAR DaysRemaining = DaysBetweenStartAndEnd - DaysSinceStart
VAR ItemsPerDay = TotalItems / DaysBetweenStartAndEnd
VAR ItemsCompleted = ItemsPerDay * DaysSinceStart
VAR ItemsRemaining = TotalItems - ItemsCompleted
VAR ItemsProjected = ItemsPerDay * DaysBetweenStartAndEnd
RETURN
IF(
DaysSinceStart < 0,
0,
IF(
DaysSinceStart > DaysBetweenStartAndEnd,
100,
ItemsCompleted / ItemsProjected
)
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Zalina ,
Please have a ty.
Projected Completion % =
VAR TotalItems = 100
VAR DaysBetweenStartAndEnd = 10
VAR DaysSinceStart = DATEDIFF(MIN('Table'[Start Date]), MAX('Table'[End Date]), DAY)
VAR DaysRemaining = DaysBetweenStartAndEnd - DaysSinceStart
VAR ItemsPerDay = TotalItems / DaysBetweenStartAndEnd
VAR ItemsCompleted = ItemsPerDay * DaysSinceStart
VAR ItemsRemaining = TotalItems - ItemsCompleted
VAR ItemsProjected = ItemsPerDay * DaysBetweenStartAndEnd
RETURN
IF(
DaysSinceStart < 0,
0,
IF(
DaysSinceStart > DaysBetweenStartAndEnd,
100,
ItemsCompleted / ItemsProjected
)
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
122 | |
89 | |
75 | |
55 | |
45 |
User | Count |
---|---|
134 | |
120 | |
76 | |
65 | |
64 |