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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a dataset with a few blanks in different columns. I wanted to showcase these blanks in a simple table. But it only lets me filter one column and doesnt show the blanks in other columns. for example:
| column 1 | column 2 | column3 |
| value | value | |
| value | value | value |
| value | value | value |
| value | value | |
| value |
|
If I filter column 1 on only show blanks. It only shows the first row. But I want to see all the blank in one table. Is there a way to do this with DAX?
What I want to see is this:
| column 1 | column 2 | column3 |
| value | value | |
| value | value | |
| value |
|
Solved! Go to Solution.
Hi, @Anonymous
You can create a measure as below, then apply it to 'Filters on this visual'
visual filter =
IF (
ISBLANK ( MAX ( 'Table'[column1] ) ) || ISBLANK ( MAX ( 'Table'[column2] ) )
|| ISBLANK ( MAX ( 'Table'[column3] ) ),
1,
0
)
Best Regards,
Community Support Team _ Eason
This the the best solution.
Hi, @Anonymous
You can create a measure as below, then apply it to 'Filters on this visual'
visual filter =
IF (
ISBLANK ( MAX ( 'Table'[column1] ) ) || ISBLANK ( MAX ( 'Table'[column2] ) )
|| ISBLANK ( MAX ( 'Table'[column3] ) ),
1,
0
)
Best Regards,
Community Support Team _ Eason
@Anonymous it is not clear what you are trying to achieve? What you mean by when filter column 1, you get to see blank in other columns and why filtering on column 1 will show only 3 rows whereas in your sample data it has 5 rows?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!