<?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 How to drill through rows in a range in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3207146#M116838</link>
    <description>&lt;P&gt;Hi Experts!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table Document and my case is I need to show in the table visual via drill through rows that located in a range of other column. Let me explain it by this example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here I filtered Project Number =&amp;nbsp;CP-22-3145 and get all related columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;And when selecting one particular Project Number like this above I want to show via drill through Drawing Number, Project Number, Master Document columns on another table where values related to ALL Master Document values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected result will be(I filtered it manually by taking all Master Document values from previos screen):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;You can see here that this table includes not only&amp;nbsp;CP-22-3145, but all Project Numbers and Drawing Numbers that have the same Master Document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please Help, appreciate for any ideas.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Apr 2023 12:47:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-04-26T12:47:52Z</dc:date>
    <item>
      <title>How to drill through rows in a range</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3207146#M116838</link>
      <description>&lt;P&gt;Hi Experts!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table Document and my case is I need to show in the table visual via drill through rows that located in a range of other column. Let me explain it by this example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here I filtered Project Number =&amp;nbsp;CP-22-3145 and get all related columns.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;And when selecting one particular Project Number like this above I want to show via drill through Drawing Number, Project Number, Master Document columns on another table where values related to ALL Master Document values.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected result will be(I filtered it manually by taking all Master Document values from previos screen):&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;You can see here that this table includes not only&amp;nbsp;CP-22-3145, but all Project Numbers and Drawing Numbers that have the same Master Document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please Help, appreciate for any ideas.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 12:47:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3207146#M116838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-26T12:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to drill through rows in a range</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3210393#M117074</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you want to filter the [Project Number] in a slicer and you want to select one row to jump to another page to show all the data who contains the [Master Document] in pre-Page.&lt;/P&gt;
&lt;P&gt;In my thought , first you slicer [Project Number] in first page ,like this:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The [Master Document] has "MD1,13,4" , so in the Page2 will show all the data who contains&amp;nbsp;"MD1,13,4":&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this , here are the steps you can refer to :&lt;BR /&gt;(1)This is my test data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;(2)First , we need add a calculated column in this table :&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = 1&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then we need to click "New Table" to add a calculated table as a assited slicer:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = VALUES('Document'[Project Number])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(3)Then we need to put the 'Document'[Project Number] and the 'Table'[Project Number] as a slicer in the first Page1:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;We need to put the [Column] in Table visual.And you need to select "Don't Summarize" for this field both in Page1 and Page2:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And then we need to open the Sync slicer for the&amp;nbsp;'Table'[Project Number] to Page2 and create the same group for three slicers:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(4)Then we can create a measure for Page2 and configure it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = var _slicer = VALUES('Table'[Project Number])
var _t = SELECTCOLUMNS( FILTER(ALLSELECTED('Document') , 'Document'[Project Number] in _slicer) , "docu" , [Master Document])
return
IF( MAX('Document'[Master Document]) in _t ,1,0)&lt;/LI-CODE&gt;
&lt;P&gt;Also you need to put the [Column] field on the "Drill through":&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Also , you can close the "Text wrap" in Table visual and then you can drag your mouse to hide this [Column].&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above all , you can meet your need if i did not misunderstand your description. You can also download my test .pbix to test.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2023 02:36:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3210393#M117074</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2023-04-28T02:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to drill through rows in a range</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3215372#M117378</link>
      <description>&lt;P&gt;Thank you so much for your detailed solution!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 09:59:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-drill-through-rows-in-a-range/m-p/3215372#M117378</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-02T09:59:13Z</dc:date>
    </item>
  </channel>
</rss>

