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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Knuckles
Regular Visitor

Power BI Embedded Filter Problem

hi

 

i try to create an angular 2 application with Power BI Embedded report.

I create a dashboard with a Report level filter on a Function Table that is used to retrive the data.

I use this code, with javascript, to set the report

 

var m = { 
                    action: "loadReport",
                    accessToken: response.AccessToken,
                    height: h, 
                    width: w,
                    oDataFilter:'CountryRegion eq "United States"'
             };

but when the report is show the filter is not set (but work when the user click on it)

 

Any suggestion?

 

Thanks!

1 ACCEPTED SOLUTION

@Knuckles

 

Both adding the parameter in JS or adding query in embeded URL work in my test.

 

In JS, a format as below should work, DO NOT mess the single quote and double quotes. You can add an alert to debug the passed JSON.stringified message.

oDataFilter:'CountryRegion eq "United States"'
oDataFilter: "<table>/<column> eq '<filtervalue>'"

 

One thing important is that <table>/<column> is case-sensitive. Make sure you've specified the correct names.

 

View solution in original post

4 REPLIES 4
jocaplan-MSFT
Microsoft Employee
Microsoft Employee

The filter needs to be set as a query string parameter on the embedURL.

thanks for your reply

 

i try this

 

iframe.src=response.Report.embedUrl +"&$filter=CountryRegion/CountryRegionName eq 'United States'";

but doesen't work....

@Knuckles

 

Both adding the parameter in JS or adding query in embeded URL work in my test.

 

In JS, a format as below should work, DO NOT mess the single quote and double quotes. You can add an alert to debug the passed JSON.stringified message.

oDataFilter:'CountryRegion eq "United States"'
oDataFilter: "<table>/<column> eq '<filtervalue>'"

 

One thing important is that <table>/<column> is case-sensitive. Make sure you've specified the correct names.

 

thanks!

 

the problem was the single quote and double quotes!

 

Now all works!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.