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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
When you want to use a filter added to the report url how do specify when you are looking for a column when the value is blank or null.
reporturl?Filter=TableName/ColumnName eq ' ?'
I tried reporturl?Filter=TableName/ColumnName eq '(BLANK)' and it didnt work. Any advice?
Solved! Go to Solution.
The parser doesn’t support '' null as a right hand side expression, similar post here: https://community.powerbi.com/t5/Service/How-to-remove-Blank-value-using-URL-Filtering/td-p/529041
There is a workaround by replacing the blank values to text "Blank", and you can try Filter=TableName/ColumnName eq 'Blank'
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The parser doesn’t support '' null as a right hand side expression, similar post here: https://community.powerbi.com/t5/Service/How-to-remove-Blank-value-using-URL-Filtering/td-p/529041
There is a workaround by replacing the blank values to text "Blank", and you can try Filter=TableName/ColumnName eq 'Blank'
Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@msgeorgie Maybe:
reporturl?Filter=TableName/ColumnName eq ''
?
Unfortunately no. as null is different than blank.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.