<?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: Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2795533#M87828</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;, Is this solution for the Connected model With Slicers or Discounted Model with Slicers?&lt;/P&gt;</description>
    <pubDate>Mon, 26 Sep 2022 08:08:13 GMT</pubDate>
    <dc:creator>Rasidul_Hasan</dc:creator>
    <dc:date>2022-09-26T08:08:13Z</dc:date>
    <item>
      <title>Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2791318#M87632</link>
      <description>&lt;P&gt;I have 5 Slicers and They are A, B, C, D, &amp;amp; E. I want to Filter Matrics Based on the combination of &lt;STRONG&gt;AND&lt;/STRONG&gt; &amp;amp; &lt;STRONG&gt;OR&lt;/STRONG&gt; logic between Slicers. Something Like below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Matrics should be Filtered by =&amp;nbsp; ( A &lt;STRONG&gt;&amp;amp;&lt;/STRONG&gt; B )&amp;nbsp; &lt;STRONG&gt;||&lt;/STRONG&gt;&amp;nbsp; ( C &lt;STRONG&gt;&amp;amp;&lt;/STRONG&gt; D ) &lt;STRONG&gt;||&lt;/STRONG&gt; E&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Example =&amp;nbsp; &amp;nbsp; ( A&amp;nbsp; &lt;STRONG&gt;AND&lt;/STRONG&gt;&amp;nbsp; B )&amp;nbsp; &lt;STRONG&gt;OR&lt;/STRONG&gt;&amp;nbsp; ( C&amp;nbsp; &lt;STRONG&gt;AND&lt;/STRONG&gt;&amp;nbsp; D ) &lt;STRONG&gt;OR&lt;/STRONG&gt;&amp;nbsp; E&lt;/P&gt;&lt;P&gt;Can Someone Share with me a prototype build on DAX? Using Connected or Disconnected Table/Slicers will work.&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 13:24:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2791318#M87632</guid>
      <dc:creator>Rasidul_Hasan</dc:creator>
      <dc:date>2022-09-24T13:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2791391#M87634</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="446800" data-lia-user-login="Rasidul_Hasan" class="lia-mention lia-mention-user"&gt;Rasidul_Hasan&lt;/a&gt;&amp;nbsp;That would be something below. Hard to be specific without sample data, etc. Basically an implementation of a Complex Selector.&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/The-Complex-Selector/m-p/1116633#M534" target="_blank"&gt;The Complex Selector - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
  VAR __A = SELECTEDVALUE('SlicerTableA'[A])
  VAR __B = SELECTEDVALUE('SlicerTableB'[B])
  VAR __C = SELECTEDVALUE('SlicerTableC'[C])
  VAR __D = SELECTEDVALUE('SlicerTableD'[D])
  VAR __E = SELECTEDVALUE('SlicerTableE'[E])
  VAR __A1 = MAX('Table'[A])
  VAR __B1 = MAX('Table'[B])
  VAR __C1 = MAX('Table'[C])
  VAR __D1 = MAX('Table'[D])
  VAR __E1 = MAX('Table'[E])
RETURN
  SWITCH(TRUE(),
    ( __A = __A1 &amp;amp;&amp;amp; __B = __B1 ) || ( __C = __C1 &amp;amp;&amp;amp; __D = __D1) || __E = __E1,1,
    0
  )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Sep 2022 14:19:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2791391#M87634</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-09-24T14:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2792419#M87673</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 02:09:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2792419#M87673</guid>
      <dc:creator>CNENFRNL</dc:creator>
      <dc:date>2022-09-25T02:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2793391#M87716</link>
      <description>&lt;P&gt;Fantastic.&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 14:56:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2793391#M87716</guid>
      <dc:creator>Rasidul_Hasan</dc:creator>
      <dc:date>2022-09-25T14:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2793396#M87717</link>
      <description>&lt;P&gt;Great.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Sep 2022 14:56:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2793396#M87717</guid>
      <dc:creator>Rasidul_Hasan</dc:creator>
      <dc:date>2022-09-25T14:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrics Based on Combination of AND OR Logic from Multiple Slicers (More then 3 Slicer)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2795533#M87828</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;, Is this solution for the Connected model With Slicers or Discounted Model with Slicers?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 08:08:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrics-Based-on-Combination-of-AND-OR-Logic-from/m-p/2795533#M87828</guid>
      <dc:creator>Rasidul_Hasan</dc:creator>
      <dc:date>2022-09-26T08:08:13Z</dc:date>
    </item>
  </channel>
</rss>

