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

Earn vs Plan Line Graph

Hi there, i need to create a line chart that has a "Plan" line that begins where the "Earned" line ends. I currently have the following measures for "Earned" & "Plan"

 

Earned Line =
IF(MAX(fact_ManhourProgress[Date]) <= TODAY(),
CALCULATE(
SUM(fact_ManhourProgress[Value]),
FILTER(ALLSELECTED(fact_ManhourProgress),fact_ManhourProgress[Date] <= MAX(fact_ManhourProgress[Date])),
FILTER(ALLSELECTED(fact_ManhourProgress),fact_ManhourProgress[Type]="Current"),
FILTER(ALLSELECTED(fact_ManhourProgress),fact_ManhourProgress[Spreadsheet Field]="Actual Units")))
 
Plan Line =
IF(MAX(fact_ManhourProgress[Date]) >= TODAY(),
CALCULATE(
SUM(fact_ManhourProgress[Value]),
FILTER(ALLSELECTED(fact_ManhourProgress),fact_ManhourProgress[Date] <= MAX('fact_ManhourProgress'[Date])),
FILTER(ALLSELECTED(fact_ManhourProgress[Type]),fact_ManhourProgress[Type]="Current"),
FILTER(ALLSELECTED(fact_ManhourProgress),fact_ManhourProgress[Spreadsheet Field]="Remaining Units")))
 
I need the plan line to take the total from the earned line and begin on the plan date.
 
Any help is much appreciated
1 ACCEPTED SOLUTION
v-lili6-msft
Community Support
Community Support

HI, @Anonymous 

After my research, you could try this formula as Plan measure

 

Plan Line =
IF (
    MAX ( fact_ManhourProgress[Date] ) >= TODAY (),
    CALCULATE (
        SUM ( fact_ManhourProgress[Value] ),
        FILTER (
            ALLSELECTED ( fact_ManhourProgress ),
            fact_ManhourProgress[Date] <= MAX ( 'fact_ManhourProgress'[Date] )
                && fact_ManhourProgress[Date] >= TODAY ()
        ),
        FILTER (
            ALLSELECTED ( fact_ManhourProgress ),
            fact_ManhourProgress[Type] = "Current"
        ),
        FILTER (
            ALLSELECTED ( fact_ManhourProgress ),
            fact_ManhourProgress[Spreadsheet Field] = "Remaining Units"
        )
    )
        + CALCULATE (
            SUM ( fact_ManhourProgress[Value] ),
            FILTER (
                ALLSELECTED ( fact_ManhourProgress ),
                fact_ManhourProgress[Date] <= MAX ( fact_ManhourProgress[Date] )
                    && fact_ManhourProgress[Date] <= TODAY ()
            ),
            FILTER (
                ALLSELECTED ( fact_ManhourProgress ),
                fact_ManhourProgress[Type] = "Current"
            ),
            FILTER (
                ALLSELECTED ( fact_ManhourProgress ),
                fact_ManhourProgress[Spreadsheet Field] = "Actual Units"
            )
        )
)

For example:

In my sample example:

3.JPG

 

Best Regards,

Lin

 

Community Support Team _ Lin
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
v-lili6-msft
Community Support
Community Support

HI, @Anonymous 

After my research, you could try this formula as Plan measure

 

Plan Line =
IF (
    MAX ( fact_ManhourProgress[Date] ) >= TODAY (),
    CALCULATE (
        SUM ( fact_ManhourProgress[Value] ),
        FILTER (
            ALLSELECTED ( fact_ManhourProgress ),
            fact_ManhourProgress[Date] <= MAX ( 'fact_ManhourProgress'[Date] )
                && fact_ManhourProgress[Date] >= TODAY ()
        ),
        FILTER (
            ALLSELECTED ( fact_ManhourProgress ),
            fact_ManhourProgress[Type] = "Current"
        ),
        FILTER (
            ALLSELECTED ( fact_ManhourProgress ),
            fact_ManhourProgress[Spreadsheet Field] = "Remaining Units"
        )
    )
        + CALCULATE (
            SUM ( fact_ManhourProgress[Value] ),
            FILTER (
                ALLSELECTED ( fact_ManhourProgress ),
                fact_ManhourProgress[Date] <= MAX ( fact_ManhourProgress[Date] )
                    && fact_ManhourProgress[Date] <= TODAY ()
            ),
            FILTER (
                ALLSELECTED ( fact_ManhourProgress ),
                fact_ManhourProgress[Type] = "Current"
            ),
            FILTER (
                ALLSELECTED ( fact_ManhourProgress ),
                fact_ManhourProgress[Spreadsheet Field] = "Actual Units"
            )
        )
)

For example:

In my sample example:

3.JPG

 

Best Regards,

Lin

 

Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thanks you are awesome!

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.