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!View all the Fabric Data Days sessions on demand. View schedule
Hey all,
I treid to add the column of running total to identify items ranking. The left side is the original table. Since I could not add there, I applied the summarize function to create the new table and calculate that in the new summarize table. Just out of curiousity, do you know how I can calculate the cululative column in the original table . (see details as attached)
Solved! Go to Solution.
Hi @naoyixue1 ,
You can create a calculated column as follows.
Cumulative% = var _table=SUMMARIZE('Original Table',[Item level %],[SKU])
return SUMX(FILTER(_table,[SKU]<=EARLIER('Original Table'[SKU])),[Item level %])
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @naoyixue1 ,
You can create a calculated column as follows.
Cumulative% = var _table=SUMMARIZE('Original Table',[Item level %],[SKU])
return SUMX(FILTER(_table,[SKU]<=EARLIER('Original Table'[SKU])),[Item level %])
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Thanks Stephen!
Please try https://stackoverflow.com/questions/40226792/how-to-calculate-cumulative-total-and-in-dax
Thanks,
Ritesh
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!