March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello
I'm totally new to Power BI. I have a problem with calculating running totals.
This is a view of my data:
I have tried a lot of dax-expressions and this expression works for 1 year (i use a filter on start_year)
But now I want a matrix with the categories and years in (so no filter on year) and this is the result. I tried different dax expressions with ALL, ALLSELECTED, MAX, EARLIER,... but i can't find the solution.
I have also made a new table (summarize) and tried it with this table but non of the expressions is working.
New Table:
Anyone who can help me?
Solved! Go to Solution.
Hi,
Could you please try something like below whether it suits your requirement?
running total =
CALCULATE (
SUM ( 'Blad1'[Count] );
FILTER (
ALLSELECTED ( 'Blad1' );
'Blad1'[catnr] <= SELECTEDVALUE ( 'Blad1'[catnr] )
&& 'Blad1'[Start_year] = MAX ( 'Blad1'[Start_year] )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
I am not sure if I understood your question correctly, but please check the attached file.
I fixed two measures.
Thank you.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
I try now to calculate the percentage of the running total. The DAX expression works again if I filter the data but not without filter on years.
DAX expression:
Result with filter:
Result without filter:
I tried different expressions but I only get errors :-(.
Hi,
I am not sure if I understood your question correctly, but please check the attached file.
I fixed two measures.
Thank you.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
Please share your sample pbix file's link, and then I will try to look into it.
Thank you.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Hi,
Could you please try something like below whether it suits your requirement?
running total =
CALCULATE (
SUM ( 'Blad1'[Count] );
FILTER (
ALLSELECTED ( 'Blad1' );
'Blad1'[catnr] <= SELECTEDVALUE ( 'Blad1'[catnr] )
&& 'Blad1'[Start_year] = MAX ( 'Blad1'[Start_year] )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |