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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello 😄
I want to improve the User Experience of my report, so i was wondering if there's any way to deal with this kind of situation:
I have a left joined table, a column call 'seasons' for example, has ['Blank','Summer','Winter','Fall','Spring'].
I need that always that an user select a season (Summer','Winter','Fall','Spring) also includes the 'Blank' ones.
I know that is solve by just selecting both options but i want that the users dont know that, if they select Summer & Winter for example the 'Blank' option will be also selected automatically somehow.
Thank you!!
Solved! Go to Solution.
Hi @Anonymous ,
Please try like this:
Seasons = VALUES('Table'[Seasons])
Measure =
IF (
SELECTEDVALUE ( 'Table'[Seasons] ) IN ALLSELECTED ( Seasons[Seasons] )
|| SELECTEDVALUE ( 'Table'[Seasons] ) = BLANK (),
1,
0
)
For more details, please see the attachment.
Hi @Anonymous ,
Please try like this:
Seasons = VALUES('Table'[Seasons])
Measure =
IF (
SELECTEDVALUE ( 'Table'[Seasons] ) IN ALLSELECTED ( Seasons[Seasons] )
|| SELECTEDVALUE ( 'Table'[Seasons] ) = BLANK (),
1,
0
)
For more details, please see the attachment.
Hi, I would like to build on your answer and ask if it is possible to modify the procedure so that cross-filtering is possible. I have already opened a new issue for this: Always select Blank in the Filter combined with Cross Filtering
Basically, I want to filter a table using two slicers that include all blanks for a selected option. At the same time, however, I want to ensure that slicer 2 only displays the options that remain after the table has been filtered by the first filter. Do you have any ideas?
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |