The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.