Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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!