Forum Discussion
Jpalji
6 years agoFrequent 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 Thanks in advance.
- 6 years ago
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] ) ) )Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
dax
6 years agoCommunity 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] ) )
)
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.