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 during Fabric Data Days. Don't miss your chance! Request now
Hello,
I need help on cumulative running total, it adds on acsending order (alphabetical order) base on column test
The thing is i want to add first is the biggest number down to the lowest under # Errors column
Note: All 3 columns are just 1 column, 1st column is Test, 2nd column is count of Test and third is the Cumulative of Test.
Appreciate your answers!
Hey @Anonymous ,
Try this measure
measure =
var currenterrors =
calculate( sum( 'yourtable'[# errors] ) )
return
calculate(
sumx(
filter( 'your table'
, 'yourtable'[#errors} >= currenterrors )
)
, 'yourtable'[#errors}
)
, all('yourtable'[test]
)
Hopefully, this provides what you are looking for.
If not provide sample data, and describe the expected result based on the data you provide.
Regards,
Tom
Hey @Anonymous .
deleted the leading bracket in line 8.
Regards,
Tom
Hello, the error was removed and new error exist lol why im getting this error on visual
Here is the code
Hey @Anonymous ,
hit see details and provide the information.
Regards,
Tom
Hey @Anonymous ,
replace the curly brace in line 7 and 9 with square bracket.
Regards,
Tom
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!