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
Jpalji
Frequent Visitor

How to create line chart by date progression type

Hi,

 

Please advice I have data as following and to create Progression graph by time.

Need to create Progression by date column in Power BI

Screenshot_3.png

 

Thanks in advance.

1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi Jpaliji, 

You could try below measure

Measure 6 =
CALCULATE (
    SUM ( t5[p1] ),
    FILTER ( ALL ( t5 ), t5[date] <= MIN ( t5[date] ) )
)
    + CALCULATE (
        SUM ( t5[p2] ),
        FILTER ( ALL ( t5 ), t5[date] <= MIN ( t5[date] ) )
    )

376.PNG

Best Regards,
Zoe Zhi

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

4 REPLIES 4
dax
Community Support
Community Support

Hi 

Jpalji, 

If you want to create line chart based on date column, you could create chart like below

368.PNG

If this is not what you want , please correct me and inform me your expected output.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Jpalji
Frequent Visitor

Hi @dax ,

 

Thanks for reply, 

 

Actually I have data as following and I need to create a column in Progression at date in Power BI.

 

Please advise.

 

Screenshot_4.png

 

 

 

 

 

 

 

 

Thanks in advance

.

dax
Community Support
Community Support

Hi Jpaliji, 

You could try below measure

Measure 6 =
CALCULATE (
    SUM ( t5[p1] ),
    FILTER ( ALL ( t5 ), t5[date] <= MIN ( t5[date] ) )
)
    + CALCULATE (
        SUM ( t5[p2] ),
        FILTER ( ALL ( t5 ), t5[date] <= MIN ( t5[date] ) )
    )

376.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Jpalji
Frequent Visitor

Hi @dax,

 

Thanks for the help, I need to get Progress 1 from a different table.

I will figure it out. and write logic. Once again thanks.

 

🙂

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.

Top Solution Authors