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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
ceesvanegmond
Frequent Visitor

Embedded Report Url Filtering

I'm applying a filter to an embedded report to ensure users only see the relevant project. The filter is provided in the following format: &filter=TABLE%2FProject_x0020_No_x0020_-_x0020_Title%20in%20(%27416033-54220%20-%20xx%27).

 

However, the data is still being filtered by the report's default filter. After inspecting the code in Chrome's DevTools, I noticed that two filters are being applied (as shown in the JSON below): the first is the default filter set by the report owner, and the second is the one applied via the URL.

 

Does anyone know how to resolve this, or should it be considered a bug?

 

"Where": [{
"Condition": {
"In": {
"Expressions": [{
"Column": {
"Expression": {
"SourceRef": {
"Source": "v"
}
},
"Property": "Project No - Title"
}
}
],
"Values": [[{
"Literal": {
"Value": "'412051-00155 - xxx'"
}
}
]]
}
}
}, {
"Condition": {
"In": {
"Expressions": [{
"Column": {
"Expression": {
"SourceRef": {
"Source": "v"
}
},
"Property": "Project No - Title"
}
}
],
"Values": [[{
"Literal": {
"Value": "'416033-54220 - xx'"
}
}
]]
}
}
}
]

 

3 REPLIES 3
Anonymous
Not applicable

Hi @ceesvanegmond ,

 

Thanks for @djurecic reply, that's really helpful!

 

@ceesvanegmond I recommend that you check that your URL filter is encoded correctly, and if you are going to use the in character, the parentheses should be a single column table separated by commas.Filter a report using query string parameters in the URL - Power BI | Microsoft Learn

vmengmlimsft_0-1728266568655.png

 

According to your URL filter, there is only one value in parentheses, so I recommend you use eq.

?filter=Table/ColumnName eq '416033-54220 - xx'

 

 

Best regards,

Mengmeng Li

 

Thanks for the suggestion, I've used eq instead of in as well, that results in the same behavour.

djurecic
Super User
Super User

Hi @ceesvanegmond ,

 The URL filter will be applied in addition to any default filters from the report owner. I would try removing that default filter, then the URL filter should work as intended.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.

Top Kudoed Authors