Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Dear All,
I have a table which filters by the following values:
null |
x |
z |
What I want to achieve is a filter which incorporates only the "x" and "y" options, but when you filter for "x" you also filter the table for "null" value. In other words:
now | desired |
null | x |
x | x |
z | z |
Any suggestion?
Solved! Go to Solution.
Hi @gianmarco
You can refer to the following suggestion
Sample data
Slicer data
You can create a measure
Measure = IF(ISFILTERED('Table (2)'[Column1]),IF("X" in VALUES('Table (2)'[Column1]),CALCULATE(SUM('Table'[Value]),FILTER('Table',OR('Table'[Type] in VALUES('Table (2)'[Column1]),[Type]=""))),CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Type] in VALUES('Table (2)'[Column1])))),SUM('Table'[Value]))
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@gianmarco , Create a measure and add visual or visual level filter
countrows(filter(Table, not(isblank(Table[Column])) ))
Column is column having those three values
Dear @amitchandak,
maybe I wasn't clear..
I can slice a table for the following row values:
1) null
2) x
3) z
What I want to achieve is a slicer where I can filter for the following options:
1) x & null
2) z
In other words, you can slice for x and z only but when you slice for x you slice for null as well.
Thank you very much
gianmarco
Hi @gianmarco
You can refer to the following suggestion
Sample data
Slicer data
You can create a measure
Measure = IF(ISFILTERED('Table (2)'[Column1]),IF("X" in VALUES('Table (2)'[Column1]),CALCULATE(SUM('Table'[Value]),FILTER('Table',OR('Table'[Type] in VALUES('Table (2)'[Column1]),[Type]=""))),CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Type] in VALUES('Table (2)'[Column1])))),SUM('Table'[Value]))
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
75 | |
54 | |
37 | |
31 |
User | Count |
---|---|
99 | |
56 | |
50 | |
42 | |
40 |