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!
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
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.
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.
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!
@LadyLizzy glad you figured out, sorry I missed to point out to add as a measure instead of column. Cheers!!
Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
202 | |
69 | |
69 | |
58 | |
57 |
User | Count |
---|---|
251 | |
214 | |
102 | |
72 | |
70 |