Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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?
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 |
---|---|
72 | |
71 | |
56 | |
38 | |
35 |
User | Count |
---|---|
85 | |
66 | |
59 | |
46 | |
45 |