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
I have an original table as below -
but I want to filter out countries with participants less than 5. Hence when i apply filter I get the following matrix -
However, I want total as 13 only. How do I make my "total" in the matrix universal (should not be affected by filter) but at the same time, I should be able to filter out specific countries ?
Solved! Go to Solution.
Hi ,
According to your description, you want to "Filter out but grand total should not be affected". Right?
Here are the steps you can refer to :
(1)This is my test data :
(2)We can create a measure :
Measure = IF(HASONEVALUE('Table'[Country]),SUM('Table'[Participants]), CALCULATE( SUM('Table'[Participants]),ALL('Table')))
(3)Then we can filter the measure <5 and then we can meet your need :
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi ,
According to your description, you want to "Filter out but grand total should not be affected". Right?
Here are the steps you can refer to :
(1)This is my test data :
(2)We can create a measure :
Measure = IF(HASONEVALUE('Table'[Country]),SUM('Table'[Participants]), CALCULATE( SUM('Table'[Participants]),ALL('Table')))
(3)Then we can filter the measure <5 and then we can meet your need :
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
I wouldn't do that if I were you. This will be highly confusing to the users. Instead, create 2 measures with good names. One should work normally (i.e., sum up as usual and maybe filter the countries), the other one can be funky. But having a total that does something different than what one would expect... well, that's risky and will trigger a lot of questions.
The measure you're looking for is something like this:
[# Participants] =
var CountOfVisibleCountries = COUNTROWS( RelevantDimension[Country] )
var Result =
SUMX(
DISTINCT( RelevantDimension[Country] ),
var CountOfParticipants = [measure to calculate participants as usual]
var Result =
CountOfParticipants * ( CountOfVisibleCountries > 1 )
+ CountOfParticipants
* ( CountOfParticipants >= 5 )
* ( CountOfVisibleCountries = 1 )
Return
if( Result, Result )
)
return
Result
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 |
---|---|
23 | |
16 | |
12 | |
9 | |
7 |
User | Count |
---|---|
38 | |
32 | |
29 | |
12 | |
11 |