8

I have an IFrame which shows a PowerBI embedded Report that having world map. Can I pass a parameter to PowerBI Embedded via embedded URl to filter my report based on a specific country.

Thanks

Chamila Maddumage
  • 3,304
  • 2
  • 32
  • 43
NKDev
  • 456
  • 3
  • 8
  • 23
  • Possible duplicate of [Power BI Embed URL-multiple filters](http://stackoverflow.com/questions/37943885/power-bi-embed-url-multiple-filters) – Matt Mazzola Sep 13 '16 at 19:40

1 Answers1

13

When you embed the report, add the following to the end of the iframe's URL:

&$filter=tablename/fieldname+eq+'countryName'

John Kurlak
  • 6,594
  • 7
  • 43
  • 59
  • 1
    What if you need to not filter the page, but change the required parameter of the report to return the correct result set? – Etienne May 23 '19 at 05:40