Forum Discussion
Power BI embedded - Parameters
Power BI Embedded does not support parameters yet but you can pass in one additional filter value on the embed URL when you render the IFrame like below.
report.EmbedUrl = report.EmbedUrl + "&$filter=table/column eq 'value'";
However, only one filter is supported in the URL currently. If you need to pass multiple filters in the URL, please vote this idea.
Regards
I have tried with applying filter like below,but the filter is not affecting the Reports
var embed_UR2 = 'https://app.powerbi.com/reportEmbed?reportId=' + report_ID2;
embed_UR2 = embed_UR2 + "&$filter=EnrollmentDbrd/Year eq '2016'";
- gilbertocrespo8 years agoAdvocate I
On this link you may solve your questions: https://powerbi.microsoft.com/en-us/documentation/powerbi-service-url-filters/
- binj8 years agoNew Member
Those are the REST format access of reports and yes the filters work there, but the embeded has different format and I tried passing filters which never worked.