The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. 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.