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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

S-Curve for project management

Hi,

 

I'm struggling to visualize a cumulative line for forecasted work. 

My data is as follows:

  • For each task, there is the expected start and expected finish and the total amount of days in between
  • And as an example, if I'd like to calculate how much work should have be already donde by today, this would be a simple calculation and is in Expected work as of Today 

Capture1.JPG

 

What I want to to, is to calculate that expected work as of today in a dynamic way bu date, which is a S-Curve or cumulative expected work by dates in the X-Axis as this type of lines below:

 

Capture.JPG

 

Does anybody know how to do that, please?

 

Thanks in advance!

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Try the following measure... Modify it according to your requirement.

Work Status = 
VAR WorkTab = ALLSELECTED(WorkTable)
VAR MaxDate = MAXX('Calendar','Calendar'[Date])
VAR WS = 
    SUMX(
        FILTER(
            WorkTab,
            [Start]<MaxDate),
        INT(MaxDate-[Start])
    )
RETURN
WS

 

sreenathv_0-1614072154124.png

The calendar does not have any relationship with the other table. It is an independent table used only for taking the max date of each month in your graph based on the context.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Try the following measure... Modify it according to your requirement.

Work Status = 
VAR WorkTab = ALLSELECTED(WorkTable)
VAR MaxDate = MAXX('Calendar','Calendar'[Date])
VAR WS = 
    SUMX(
        FILTER(
            WorkTab,
            [Start]<MaxDate),
        INT(MaxDate-[Start])
    )
RETURN
WS

 

sreenathv_0-1614072154124.png

The calendar does not have any relationship with the other table. It is an independent table used only for taking the max date of each month in your graph based on the context.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.