<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Power BI Embedded ISV - Hyperlink incl. Filters to target page in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2665402#M37567</link>
    <description>&lt;P class="lia-align-left"&gt;Hi Community!&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;I am looking for help with the following scenario:&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;We are building a software solution on AWS for our client, our reports will be embedded in this ISV.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;The requirement for one of the reports is to include a link to one of the pages of the software, but already filtered by the selected filters in the embedded report.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;So for example:&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;I have a table in my embedded report showing contracts of all my customers.&lt;/P&gt;&lt;P class="lia-align-left"&gt;I select customer A and year 2021 in my filters. The link provided in the table should change dynamically AND filter the target page in the software to customer A and year 2021.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Could somebody please tell me if and how this can be done?&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 27 Jul 2022 15:06:49 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-07-27T15:06:49Z</dc:date>
    <item>
      <title>Power BI Embedded ISV - Hyperlink incl. Filters to target page</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2665402#M37567</link>
      <description>&lt;P class="lia-align-left"&gt;Hi Community!&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;I am looking for help with the following scenario:&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;We are building a software solution on AWS for our client, our reports will be embedded in this ISV.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;The requirement for one of the reports is to include a link to one of the pages of the software, but already filtered by the selected filters in the embedded report.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;So for example:&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;I have a table in my embedded report showing contracts of all my customers.&lt;/P&gt;&lt;P class="lia-align-left"&gt;I select customer A and year 2021 in my filters. The link provided in the table should change dynamically AND filter the target page in the software to customer A and year 2021.&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Could somebody please tell me if and how this can be done?&amp;nbsp;&lt;/P&gt;&lt;P class="lia-align-left"&gt;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 15:06:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2665402#M37567</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-27T15:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Embedded ISV - Hyperlink incl. Filters to target page</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2671669#M37637</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can refer the following blogs to get it.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://powerplatformlearn.com/2021/07/24/power-bi-url-filters-tips/" target="_self"&gt;POWER BI URL FILTERS MADE EASY&lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;https://app.powerbi.com/reportEmbed?reportId=787a839b-dec4-4e26-a063-be49fcf18879&amp;amp;autoAuth=true&amp;amp;filterPanelEnabled=False&amp;amp;pageName=ReportSectionc33aa21606003eda9841&amp;amp;$filter=Netflix/Genre in (‘Documentary’,’Drama’)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Service/Embed-iFrame-filtering/m-p/633507" target="_self"&gt;&lt;SPAN&gt;Embed iFrame filtering&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.kasperonbi.com/embed-your-power-bi-report-with-predefined-filters/" target="_self"&gt;&lt;SPAN&gt;Embed your Power BI report with predefined filters&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;const filter = {
        $schema: "http://powerbi.com/product/schema#basic",
        target: {
            table: "DimProduct",
            column: "ColorName"
        },
        operator: "In",
        values: ["Silver"]
    };
var config = {
              type: 'report',
              tokenType: models.TokenType.Embed,
              accessToken: accessToken,
              embedUrl: embedUrl,
              id: embedReportId,
              permissions: models.Permissions.All,
              filters: [filter],
              settings: {
                            filterPaneEnabled: true,
                            navContentPaneEnabled: true
              }
};
// Embed the report and display it within the div container.
var report = powerbi.embed(reportContainer, config);&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://docs.microsoft.com/en-us/javascript/api/overview/powerbi/control-report-filters" target="_self"&gt;Control report filters&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 04:20:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2671669#M37637</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-01T04:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Embedded ISV - Hyperlink incl. Filters to target page</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2675362#M37676</link>
      <description>&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 11:07:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-Embedded-ISV-Hyperlink-incl-Filters-to-target-page/m-p/2675362#M37676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-02T11:07:42Z</dc:date>
    </item>
  </channel>
</rss>

