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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello friends,
I am trying to calculate a running total based on orders table.
I get wierd result. please check and help. i would like to get the running total based on category wise sales.
here is the link to my powerbi file:
https://1drv.ms/u/s!ArDdiHvYfT0RgYwqe2eHCo64tUXfIg
Regards,
Pradip
Solved! Go to Solution.
Hi, try with this:
Total sales running = VAR TOT = CALCULATE ( SUM ( Orders[Sales] ) ) RETURN CALCULATE ( [Total sales], FILTER ( ALLSELECTED ( 'Products2'[Sub category] ), [Total sales] <= TOT ) )
Regards
Victor
Lima Peru
Hi Victor,
Thanks for the solution. It did work. Thanks again for that. just a simple question,
I am trying to understand that function when removed the variable syntax and tried to do without it doesnt work, could you kindly explain? and why do we have to write calculate twice?
The Var made a Calculate of Total Sales in this context. (Current Subcategory)
So The Filter Search all The Subcategories with "Total-Sales" Lower than the Total Sales of Actual Subcategory.
If you put directly in the filter its saying total Sales (Measure) are equal to Sum of Total Sales .
Hi, try with this:
Total sales running = VAR TOT = CALCULATE ( SUM ( Orders[Sales] ) ) RETURN CALCULATE ( [Total sales], FILTER ( ALLSELECTED ( 'Products2'[Sub category] ), [Total sales] <= TOT ) )
Regards
Victor
Lima Peru
Hi Victor,
Thanks for the solution. It did work. Thanks again for that. just a simple question,
I am trying to understand that function when removed the variable syntax and tried to do without it doesnt work, could you kindly explain? and why do we have to write calculate twice?
The Var made a Calculate of Total Sales in this context. (Current Subcategory)
So The Filter Search all The Subcategories with "Total-Sales" Lower than the Total Sales of Actual Subcategory.
If you put directly in the filter its saying total Sales (Measure) are equal to Sum of Total Sales .
Thanks Victor,
That helps.