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
Hi All,
I have a table visual similar to the below, the visual has 'Show Items With No Data' enabled. What I would like to do is filter on the Procedure column, for all items with 'no data' only. I.e. these are NOT blanks, they simply do not have a value in the table containing this column data.
Thanks so much 🙂
| Event Date | Name | Procedure Code |
| 01/01/2020 | Blue Pink | 1234 |
| 02/01/2020 | Pink Orange | |
| 03/01/2020 | Organe Yellow |
Solved! Go to Solution.
Hi @kellzp22 ,
You can create such a measure and add it to 'Filter on this visual'.
Not_blank_filter =
IF(
ISBLANK(MAX(Sheet1[Procedure Code]) ),
0,1
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kellzp22 ,
You can create such a measure and add it to 'Filter on this visual'.
Not_blank_filter =
IF(
ISBLANK(MAX(Sheet1[Procedure Code]) ),
0,1
)
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@kellzp22 - Maybe the Complex Selector - https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Complex-Selector/m-p/1116633#M534
@kellzp22 , a new column like
Not blank = calculate(countrows(Table),filter(Table,not(isblank([Procedure Code]) || [Procedure Code] = "") )
or
Not blank = calculate(countrows(Table),filter(Table,len([Procedure Code])>0))
blank = calculate(countrows(Table),filter(Table,(isblank([Procedure Code]) || [Procedure Code] = "") )
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!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 20 | |
| 18 |