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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Cumulative Sum using Line Graph on two different dates of Same relation

Hello Experts,

 

DataData

 

I am trying to plol count of PlannedDate Vs Date as one line and count of ActaulDate Vs Date as second line in same LINE GRAPH. 

Tried using populating Calendar table but somehow not able to ply on Line Graph. Any help would be highly appreciated.

Note: Count is cumulative for both lines

 

 

Thanks

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can create relatioships between tables like this.

 

Capture.PNGTo create measures as below.

Actual = 
IF (
    ISBLANK ( COUNT ( 'Table'[ActualDate] ) ),
    BLANK (),
    CALCULATE (
        COUNT ( 'Table'[ActualDate] ),
        FILTER ( ALL ( 'Date' ), 'Date'[Date] <= MAX ( 'Date'[Date] ) )
    )
)
Plan = 
IF (
    ISBLANK ( COUNT ( 'Table'[ActualDate] ) ),
    BLANK (),
    CALCULATE (
        COUNT ( 'Table'[PlannedDate] ),
        FILTER ( ALL ( 'Date' ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ),
        USERELATIONSHIP ( 'Table'[PlannedDate], 'Date'[Date] )
    )
)

2.PNG

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can create relatioships between tables like this.

 

Capture.PNGTo create measures as below.

Actual = 
IF (
    ISBLANK ( COUNT ( 'Table'[ActualDate] ) ),
    BLANK (),
    CALCULATE (
        COUNT ( 'Table'[ActualDate] ),
        FILTER ( ALL ( 'Date' ), 'Date'[Date] <= MAX ( 'Date'[Date] ) )
    )
)
Plan = 
IF (
    ISBLANK ( COUNT ( 'Table'[ActualDate] ) ),
    BLANK (),
    CALCULATE (
        COUNT ( 'Table'[PlannedDate] ),
        FILTER ( ALL ( 'Date' ), 'Date'[Date] <= MAX ( 'Date'[Date] ) ),
        USERELATIONSHIP ( 'Table'[PlannedDate], 'Date'[Date] )
    )
)

2.PNG

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

Thank You @v-frfei-msft for the response. As I can see in data for PlannedDate as July 17 2019 but in line graph I cannot se plot for the same.Also max date for planned date is 23 July 2019 and In line graph we see its plotted till 24th July 2019. 

Is there any way to plot exact data points on line graph? ActualDate have been plotted exactly as relationship is active for that. If we active PlannedDate relationship then ActualDate plot gets dropped.

Could you please suggest me on this.

 

Thanks a lot!!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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