Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
czs
New Member

Passing blank parameter to Embed report not working

Hi team

 

I want to filter some blank value in string type in embed report and I checked the original post Solved: How to remove (Blank) value using URL Filtering - Microsoft Fabric Community , but it doesn't worked.

 

The original data is 

czs_0-1718853809136.png


and '1'/'2'.. can be filtered by url parameter

czs_2-1718853968689.png

czs_3-1718853989494.png

but the blank doesn't work, and I have tried blank,null, (Blank), etc...

 

 

Please help, thanks in advance





1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @czs ,

Thank you for posting in this community.

 

Currently this is by design that we cannot use the URL query string parameter to filter null or blank

 

As a workaround, we can use the following syntax to create a calculated column to check if the original column is null:

 

Column = IF(LEN('Table'[String])>0,"NotBlank","Blank")

 

vyajiewanmsft_0-1718954405366.png

Then we can filter the embed report with the new created column as shown below:

 

&filter=Table/Column eq 'Blank'

 

vyajiewanmsft_1-1718954425336.png

Or you can simply replacing the blank values to text "Blank", and then try Filter=TableName/ColumnName eq 'Blank'

vyajiewanmsft_2-1718954580412.jpeg

Similar issue for your reference:

Solved: Parameter filter in url when looking for "BLANK" v... - Microsoft Fabric Community

Best Regards,

Joyce,

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
czs
New Member

@Anonymous  thanks for your clarify and help.

I have implemented something similiar as you mentioned in my project.

 

But I do recommend microsoft help implement the blank filter in the feature, since the "null" and "Blank" have different meaning in business and we can't calculate every column to blank. 

 

Anonymous
Not applicable

Hi @czs ,

Thank you for posting in this community.

 

Currently this is by design that we cannot use the URL query string parameter to filter null or blank

 

As a workaround, we can use the following syntax to create a calculated column to check if the original column is null:

 

Column = IF(LEN('Table'[String])>0,"NotBlank","Blank")

 

vyajiewanmsft_0-1718954405366.png

Then we can filter the embed report with the new created column as shown below:

 

&filter=Table/Column eq 'Blank'

 

vyajiewanmsft_1-1718954425336.png

Or you can simply replacing the blank values to text "Blank", and then try Filter=TableName/ColumnName eq 'Blank'

vyajiewanmsft_2-1718954580412.jpeg

Similar issue for your reference:

Solved: Parameter filter in url when looking for "BLANK" v... - Microsoft Fabric Community

Best Regards,

Joyce,

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors