Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.