<?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 Re: Multiple value drill through question in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Multiple-value-drill-through-question/m-p/4028973#M35835</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, Power BI does not inherently support multi-select drill-downs any more than it supports single-select drill-downs. However, you can work around this limitation by utilizing DAX and bookmarks. Create a DAX metric that concatenates the selected names into a string. This metric will be used to pass the selected name to the paging report.&lt;/P&gt;&lt;P&gt;Create a metric to link selected names:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SelectedNames = 
CONCATENATEX(
    VALUES('YourTable'[Name]),
    'YourTable'[Name],
    ","
)&lt;/LI-CODE&gt;&lt;P&gt;URL to create a metric to generate a paging report:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PaginatedReportURL = 
"your_paginated_report_url" &amp;amp; "?names=" &amp;amp; [SelectedNames]&lt;/LI-CODE&gt;&lt;P&gt;Create Bookmarklet: creates a bookmarklet to navigate to the URL generated by the metric. this may involve using a custom button that triggers the navigation action.&lt;BR /&gt;Navigation Button: creates a button in the report and sets the action to navigate to the URL. binds the URL action to the metric PaginatedReportURL.&lt;/P&gt;&lt;P&gt;Insert a button in your report. Set the action of the button to "Web URL".&lt;BR /&gt;Bind the URL to the degree PaginatedReportURL measure&lt;/P&gt;&lt;P&gt;By using DAX metrics to connect selected names and generate URLs, combined with bookmarks and custom buttons, you can implement multi-select drill-down functionality that generates multiple paged report pages for each selected name. This approach leverages existing Power BI functionality to overcome the limitations of single-select drill-downs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;kudos to this post&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Jul 2024 23:54:00 GMT</pubDate>
    <dc:creator>hackcrr</dc:creator>
    <dc:date>2024-07-07T23:54:00Z</dc:date>
    <item>
      <title>Multiple value drill through question</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Multiple-value-drill-through-question/m-p/4027432#M35826</link>
      <description>&lt;P&gt;Hello! My desktop report consists of a table with names, and by drilling through each name, the user gets moved to the next page, where a paginated report tailored to the selected name appears. How can I enable the user to drill through multiple names at once and get MULTIPLE reports appear, an individual paginated report page for each selected name? Thanks in advance.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2024 16:35:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Multiple-value-drill-through-question/m-p/4027432#M35826</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-05T16:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple value drill through question</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Multiple-value-drill-through-question/m-p/4028973#M35835</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, Power BI does not inherently support multi-select drill-downs any more than it supports single-select drill-downs. However, you can work around this limitation by utilizing DAX and bookmarks. Create a DAX metric that concatenates the selected names into a string. This metric will be used to pass the selected name to the paging report.&lt;/P&gt;&lt;P&gt;Create a metric to link selected names:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SelectedNames = 
CONCATENATEX(
    VALUES('YourTable'[Name]),
    'YourTable'[Name],
    ","
)&lt;/LI-CODE&gt;&lt;P&gt;URL to create a metric to generate a paging report:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;PaginatedReportURL = 
"your_paginated_report_url" &amp;amp; "?names=" &amp;amp; [SelectedNames]&lt;/LI-CODE&gt;&lt;P&gt;Create Bookmarklet: creates a bookmarklet to navigate to the URL generated by the metric. this may involve using a custom button that triggers the navigation action.&lt;BR /&gt;Navigation Button: creates a button in the report and sets the action to navigate to the URL. binds the URL action to the metric PaginatedReportURL.&lt;/P&gt;&lt;P&gt;Insert a button in your report. Set the action of the button to "Web URL".&lt;BR /&gt;Bind the URL to the degree PaginatedReportURL measure&lt;/P&gt;&lt;P&gt;By using DAX metrics to connect selected names and generate URLs, combined with bookmarks and custom buttons, you can implement multi-select drill-down functionality that generates multiple paged report pages for each selected name. This approach leverages existing Power BI functionality to overcome the limitations of single-select drill-downs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;kudos to this post&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jul 2024 23:54:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Multiple-value-drill-through-question/m-p/4028973#M35835</guid>
      <dc:creator>hackcrr</dc:creator>
      <dc:date>2024-07-07T23:54:00Z</dc:date>
    </item>
  </channel>
</rss>

