Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I'm not even sure if Power BI has the capability to this, but what I'm trying to do is essentialy "hide" values dynamically based on a slicer or some other way to specify values (less than 2, between 2 and 4, only 5, etc). I've been able to add a slicer for each column, but it ends up hiding the entire rows (which I don't want), but also having a slicer for each column isn't ideal either.
C1 | C2 | C3 | C4 | C5 | C6 | C7 | C8 |
4 | 3 | 4 | 5 | 2 | 2 | 2 | 4 |
3 | 4 | 4 | 3 | 2 | 3 | 5 | 4 |
4 | 4 | 4 | 5 | 1 | 2 | 3 | 3 |
3 | 2 | 3 | 4 | 1 | 1 | 2 | 4 |
3 | 3 | 4 | 5 | 5 | 2 | 1 | 4 |
2 | 2 | 2 | 2 | 1 | 1 | 1 | 4 |
5 | 5 | 3 | 5 | 2 | 4 | 2 | 4 |
5 | 5 | 3 | 5 | 1 | 2 | 1 | 3 |
5 | 5 | 3 | 5 | 1 | 2 | 1 | 3 |
So I guess I'm looking for a slicer or other type of way to hide values from multiple columns at the same time, without hiding the rows. I'm mentally prepared to hear this isn't possible, but thanks in advance nonetheless.
Solved! Go to Solution.
Hello @AnonEMoose ,
you create a numeric parameter that you would use to specify the number , then you apply the following dax
C1 value = IF(SELECTEDVALUE('Table'[C1]) < Parameter[Parameter Value],BLANK(),SELECTEDVALUE('Table'[C1]))
if you want to have values between, then you create another numeric parameter and adjust the dax to greater than parameter one and less than parameter 2.
attached is the pbix that i used to demonstrate the above.
Proud to be a Super User! | |
Hello @AnonEMoose ,
you create a numeric parameter that you would use to specify the number , then you apply the following dax
C1 value = IF(SELECTEDVALUE('Table'[C1]) < Parameter[Parameter Value],BLANK(),SELECTEDVALUE('Table'[C1]))
if you want to have values between, then you create another numeric parameter and adjust the dax to greater than parameter one and less than parameter 2.
attached is the pbix that i used to demonstrate the above.
Proud to be a Super User! | |
This was 90% of what I needed, and I was able to figure out the other 10%. Thank you for your help!