Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi!
I am trying to make a calculation for each row of a matrix against the sum of a column according to filtered data from a slicer. I have succeeded with a global calculation with the totals of all the organizations but it is not updating according to the slicer but my function seems to always take the total sum of all the product revenues and disregards the filter from the slicer which is supposed to be filtering the products.
This is the global one that seems to be working:
Solved! Go to Solution.
AH! I had pasted it into my calculated column (the global calculation is a column) so I tried it as a measure and it looks better but was calculating according to the category it is in.
BUT! I tried with removing the 'Products A' in the ALLSELECTED and now it works!! 😄
So the updated measure is:
A RevMix Selected % = DIVIDE(SUM('Products A'[Revenue]), CALCULATE(SUM('Products A'[Revenue]), ALLSELECTED()))*100
Thank you so much for your assistance!
Check my Slouction
Create 2 Measures
1st : Total Sales = CALCULATE(Sum('Sheet1 (3)'[Sales]),All())
2nd : Sales % = (Sum('Sheet1 (3)'[Sales])/[Total Sales])*100
A RevMix Selected % = CALCULATE(SUM('Products A'[Revenue]),ALLSELECTED(Table[Dimencion or Column 1 ]))/
CALCULATE('Products A'[Revenue]), ALL(Table)) *100
pfa Test result
@LadyLizzy update your measure as below
A RevMix Global =
DIVIDE(
SUM('Products A'[Revenue]),
CALCULATE(SUM('Products A'[Revenue]), ALLSELECTED('Products A'))
)*100
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Thank you for swift reply!
I tried your update but it doesn't give the right calculations:
The slicer is based on another table for organizers but they have a relationship. Could that be something to go on?
@LadyLizzy that might be the issue, can you share the relationship between tables.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
It's a bit sensitive data, is it enough to see this one?
The Organizers.Name value is the slicer
@LadyLizzy can you share what measure you added? It suppose to be working as expected.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
AH! I had pasted it into my calculated column (the global calculation is a column) so I tried it as a measure and it looks better but was calculating according to the category it is in.
BUT! I tried with removing the 'Products A' in the ALLSELECTED and now it works!! 😄
So the updated measure is:
A RevMix Selected % = DIVIDE(SUM('Products A'[Revenue]), CALCULATE(SUM('Products A'[Revenue]), ALLSELECTED()))*100
Thank you so much for your assistance!
Thank you very much ❤️
This was really helpful for me.
Now my financial report looks quite good 🙂
@LadyLizzy glad you figured out, sorry I missed to point out to add as a measure instead of column. Cheers!!
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.