<?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 DAX filtering with Slicers through multiple one to many related tables in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3110990#M109892</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time posting but any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've reduced the model down to remove some complexities but still having issues pulling information correctly through tables. Schema is like a reversed star schema i.e. the fact table is the 1 on the one to many side relationship (this is the part i'm interested in):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Programme table (1) =&amp;gt; (*) Project table&lt;/P&gt;&lt;P&gt;Project Table (1) =&amp;gt; (*) Project Theme table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Represented below with dubby data:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Wider Schema&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the main report I am using a table with the main element being ProgrammeReference and as expected when I use a slicer containing anything from project it doesn't filter and so I need some DAX in order to retreive the data. When I add the following visual level filter on report it filters the report BEFORE the slicer is used which isn't what I want:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Linked project Cross filter slicer = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Programme&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;CROSSFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Programme&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Both&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;So any help getting the report to filter only when the slicer is used would be very helpful.&lt;/DIV&gt;&lt;DIV&gt;Slicer: Linked Project Stage, 'Project'[Project status]&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;However I also need a slicer to filter the main report using fields from the Project theme table, but only after the slicer has been used, I've attempted writing some DAX of my own but it simply removes all fields from the report e.g. the below did not work:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Project Theme Cross filter slicer = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Project Theme'&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectThemeType]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;[Linked project Cross filter slicer]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Programme'&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;CROSSFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Project Theme'&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Both&lt;/SPAN&gt;&lt;SPAN&gt;))))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had envisioned some kind of Measure would be required to be added as a visual level filter to the main report but open to other solutions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if more information is required!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Scott99&lt;/P&gt;</description>
    <pubDate>Wed, 08 Mar 2023 09:28:07 GMT</pubDate>
    <dc:creator>Scott99</dc:creator>
    <dc:date>2023-03-08T09:28:07Z</dc:date>
    <item>
      <title>DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3110990#M109892</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First time posting but any help would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've reduced the model down to remove some complexities but still having issues pulling information correctly through tables. Schema is like a reversed star schema i.e. the fact table is the 1 on the one to many side relationship (this is the part i'm interested in):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Programme table (1) =&amp;gt; (*) Project table&lt;/P&gt;&lt;P&gt;Project Table (1) =&amp;gt; (*) Project Theme table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Represented below with dubby data:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Wider Schema&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the main report I am using a table with the main element being ProgrammeReference and as expected when I use a slicer containing anything from project it doesn't filter and so I need some DAX in order to retreive the data. When I add the following visual level filter on report it filters the report BEFORE the slicer is used which isn't what I want:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Linked project Cross filter slicer = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Programme&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;CROSSFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Programme&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Both&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;So any help getting the report to filter only when the slicer is used would be very helpful.&lt;/DIV&gt;&lt;DIV&gt;Slicer: Linked Project Stage, 'Project'[Project status]&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;However I also need a slicer to filter the main report using fields from the Project theme table, but only after the slicer has been used, I've attempted writing some DAX of my own but it simply removes all fields from the report e.g. the below did not work:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Project Theme Cross filter slicer = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Project Theme'&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectThemeType]&lt;/SPAN&gt;&lt;SPAN&gt;) = &lt;/SPAN&gt;&lt;SPAN&gt;TRUE&lt;/SPAN&gt;&lt;SPAN&gt;(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;[Linked project Cross filter slicer]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Programme'&lt;/SPAN&gt;&lt;SPAN&gt;[ProgrammeId]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;CROSSFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Project Theme'&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Project&lt;/SPAN&gt;&lt;SPAN&gt;[ProjectId]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Both&lt;/SPAN&gt;&lt;SPAN&gt;))))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had envisioned some kind of Measure would be required to be added as a visual level filter to the main report but open to other solutions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if more information is required!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Scott99&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 09:28:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3110990#M109892</guid>
      <dc:creator>Scott99</dc:creator>
      <dc:date>2023-03-08T09:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3114705#M110239</link>
      <description>&lt;P&gt;You have to show via screenshot what is the problem exactly. Its is difficult to help. In best case share your PBI file via onedrive, dropbox with some example data.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 18:27:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3114705#M110239</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-06T18:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3118346#M110475</link>
      <description>&lt;P&gt;Update with screenshots and more info &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 09:29:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3118346#M110475</guid>
      <dc:creator>Scott99</dc:creator>
      <dc:date>2023-03-08T09:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3118658#M110496</link>
      <description>&lt;P&gt;Can you please make your first problems more clear on a visual you used (e.g. matrix visual)? It is for me difficult to understand without the visual which has to be filtered. Perhaps it is my reading ability in english &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I need the context i which the measure will be used.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;However I also need a slicer to filter the main report using fields from the Project theme table, but only after the slicer has been used, I've attempted writing some DAX of my own but it simply removes all fields from the report e.g. the below did not work:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Do you mean what the result table show nothing if the filter is not used?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 11:25:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3118658#M110496</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-08T11:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119036#M110543</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi andhiii079845,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Firstly thanks so much for taking an interest in my problem, I do very much appreciate it!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So the problem has 2 elements (assuming the image of the schema is fine). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Part 1: My table visual is based off of the programme table and uses Programme reference as the first entry, however having created a slicer using a field from the project table has resulted in the programme table not filtering as i'd like it:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;=&amp;gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;As you can see in the above changing the 'Linked project Stage' filter doesn't filter the table. I'd like the filter to show only programmes that are related to projects at any given stage when the filter is used.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Part 2: Similar to the above but using the project Theme slicer, I'd like that filter to be able to filter the programme table visual to only show programmes that have projects with (in this example) a major theme. I do not want the table to be filtered prior to using the slicers though, so essentially when no slicer is in use, we can see all programmes listed. Again as you can see in the below, using the slicer has no impact on the table visual.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;=&amp;gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note: I can't make the programme (1) =&amp;gt; project (*) relationship a both-directional one as this automatically filters the programme table visual.&lt;/P&gt;&lt;P&gt;Again if you need any further information, i'd be more than happy to provide.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Scott99&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 13:59:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119036#M110543</guid>
      <dc:creator>Scott99</dc:creator>
      <dc:date>2023-03-08T13:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119281#M110558</link>
      <description>&lt;P&gt;I try to generate with your information a PBI File but will perhaps miss one important point. Please take this and build your probem in this file and share it again.&amp;nbsp;&lt;BR /&gt;&lt;A href="https://1drv.ms/u/s!AgPiQyuY6LHqfLZPVkxHVDp5dHs?e=2Wmj1Y" target="_blank" rel="noopener"&gt;DAX filtering with Slicers through multiple one to many related tables.pbix&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/x/s!AgPiQyuY6LHqfQm518rC_tzZtOQ?e=WugIm3" target="_blank" rel="noopener"&gt;DAX filtering with Slicers through multiple one to many related tables.xlsx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 15:48:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119281#M110558</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-08T15:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119492#M110567</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/520150" target="_self"&gt;&lt;SPAN class=""&gt;andhiii079845&lt;/SPAN&gt;&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just had a look at the .pbix file and you've got it 100%. As in that .pbix, when you try to use the project status slicer the table below doesn't get filtered, which is what I'm after. The same goes for project theme type slicer, it isn't filtering the programme table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 17:03:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119492#M110567</guid>
      <dc:creator>Scott99</dc:creator>
      <dc:date>2023-03-08T17:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119506#M110568</link>
      <description>&lt;P&gt;Perfect! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; But I do not use this "&lt;SPAN&gt;Linked project Cross filter slicer"? So the goal is that you can filter. i will try my best &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 17:09:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119506#M110568</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-08T17:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119683#M110579</link>
      <description>&lt;P&gt;I had to change a little bit more. Look in the PBI file an try the filter if it what you want?&lt;/P&gt;&lt;DIV&gt;&lt;A href="https://1drv.ms/u/s!AgPiQyuY6LHqflx4-UBVgmQEBCo?e=4o9cuw" target="_blank" rel="noopener"&gt;DAX filtering with Slicers through multiple one to many related tables REV2.pbix&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I have to add separate slicer dimensional table and the new measure is:&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Filterrprojectstatus = &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _status =&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(StatusSlicer[Project status])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _theme = &lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(ProjectThemeSlicer[ProjectID])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;BR /&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _bothfilter = (&lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(Project,Project[Project status]=_status &amp;amp;&amp;amp; Project[ProjectID]=_theme),Project[ProgrammeID]))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Var&lt;/SPAN&gt;&lt;SPAN&gt; _statusfilter = &lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(Project,Project[Project status]=_status),Project[ProgrammeID])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt;&lt;SPAN&gt; _themefilter = &lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(Project,Project[ProjectID]=_theme),Project[ProgrammeID])&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;HASONEFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(ProjectThemeSlicer[Project Theme Type]) &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;HASONEFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(StatusSlicer[Project status]),&lt;/SPAN&gt;&lt;SPAN&gt;countx&lt;/SPAN&gt;&lt;SPAN&gt;(_bothfilter,Project[ProgrammeID]),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;HASONEFILTER&lt;/SPAN&gt;&lt;SPAN&gt;(ProjectThemeSlicer[Project Theme Type]),&lt;/SPAN&gt;&lt;SPAN&gt;countx&lt;/SPAN&gt;&lt;SPAN&gt;(_themefilter,Project[ProgrammeID]),&lt;/SPAN&gt;&lt;SPAN&gt;countx&lt;/SPAN&gt;&lt;SPAN&gt;(_statusfilter,Project[ProgrammeID])))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 08 Mar 2023 20:09:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3119683#M110579</guid>
      <dc:creator>andhiii079845</dc:creator>
      <dc:date>2023-03-08T20:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX filtering with Slicers through multiple one to many related tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3120027#M110611</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="524031" data-lia-user-login="Scott99" class="lia-mention lia-mention-user"&gt;Scott99&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Linked Projects =
IF (
    ISFILTERED ( 'Project Theme'[ProjectThemeType] )
        || ISFILTERED ( 'Project'[Project status] ),
    CALCULATE (
        DISTINCTCOUNT ( 'Programme'[ProgrammeId] ),
        CROSSFILTER ( Project[ProgrammeId], Programme[ProgrammeId], BOTH ),
        CROSSFILTER ( 'Project Theme'[ProjectId], Project[ProjectId], BOTH )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 Mar 2023 22:54:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-filtering-with-Slicers-through-multiple-one-to-many-related/m-p/3120027#M110611</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-08T22:54:36Z</dc:date>
    </item>
  </channel>
</rss>

