Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric certified for FREE! Don't miss your chance! Learn more
Good, I'm working on a personal project, and I've stagnated in one step.
I intend to make a line graph where the values are increasing, which is shown as in the example.
In my document I only managed to show it like this:
Thanks a lot.
Solved! Go to Solution.
@Ruben28P That looks good to me, is it giving the results you want? If so please mark it as a solution.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Hi @Syndicate_Admin ,
What is the specific expression [Med_xG] created in your formula. In addition allselected function is relatively complex, it is recommended that the conversion formula be replaced by all function. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Good
the specific expression of [Med_xG] :
Hi @Syndicate_Admin ,
My thoughts are similar to @AllisonKennedy . You can create the following measure statistics cumulative values instead of the fields in the original line chart visual. I did a test with the following reference:
M_1 =
CALCULATE (
SUM ( 'Table'[Value1] ),
FILTER ( ALL ( 'Table' ), 'Table'[Score] <= MAX ( 'Table'[Score] ) )
)
If the problem is still not resolved, please point it out. Looking forward to your reply.
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Good, I tried it but I can't do it, probably because I don't understand transcribing your nomenclature.
Do something similar, but I don't know if it's correct, because the "total" doesn't appear on the chart like you.
The measure you have passed me could be done with the names of my file?
Thanks a lot. Greetings.
@Ruben28P I think what you're looking for is a running total measure.
Try something like:
VAR _time = MAX( xG_Partidos[Time] )
RETURN
Running Total xG = CALCULATE( SUM(xG_Partidos[xG] ) , xG_Partidos[Time] <= _time)
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Hola @AllisonKennedy
Probé con lo que me pusiste en la contestación, pero me salía error.
Esta puede ser una solución?
@Ruben28P That looks good to me, is it giving the results you want? If so please mark it as a solution.
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
Change your X axis type from categorical to continuous.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 69 | |
| 59 | |
| 47 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 107 | |
| 104 | |
| 39 | |
| 27 | |
| 27 |