Forum Discussion
Restricting Values for Total
- 7 years ago
Hi adaocabelo,
Here I made an sample as your description. I created two measures to meet your requirement.
CA1L = MAX(opaRametro[Value])/CALCULATE(COUNT(opaRametro[Product]))
Measure = SUMX(opaRametro,[CA1L])
Then we can get the result as we excepted.
For more details, please check the pbix as attached.
https://www.dropbox.com/s/eakbjcoo32a90l6/Restricting%20Values%20for%20Total.pbix?dl=0
Regards,
Frank
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
- adaocabelo7 years agoFrequent Visitor
Hi Greg, thanks for your reply.
This was very helpfull to change the total value, but I'm still getting same result as before.
Power BI is still adding all row on the total, instead of only the rows that appears.
- Greg_Deckler7 years agoCommunity Champion
Correct, because the total row executes in the context of ALL. For this to work, you need to calculate the total row in the context of ALLSELECTED.
- adaocabelo7 years agoFrequent Visitor
Sorry, but, how do I use that?
Think my filter is a bit harder to apply then the one on the example.
On the example the filter was "amount >1000", I need to filter only one result for each product and sum that.
All Selected function is not working for this purpose.How should I refer on the filter to have these results?