<?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 Ticky question regarding Filter/DAX/Slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2267677#M55052</link>
    <description>&lt;P&gt;Hi members,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table where I need to use slice the Amount by industry/department/group.&lt;/P&gt;&lt;P&gt;However, the tricky part is that when slicing Industry the amount has to be filtered by CATEGORY [CO_101] and [CO_601].&lt;/P&gt;&lt;P&gt;While slicing department, the amount has&amp;nbsp;to be filtered by CATEGORY [CO_301].&lt;/P&gt;&lt;P&gt;When slicing group, the amount has&amp;nbsp;to be filtered by CATEGORY [CO_401].&lt;/P&gt;&lt;P&gt;I wonder how to perform this type of calculation?&lt;/P&gt;&lt;P&gt;The end result I need is to place this measure into a bar chart and people can use slicers to look from different view.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PBIX Link:&amp;nbsp;&lt;A href="https://drive.google.com/file/d/1yH8zMARc2YZbGv4C-vLJN6cUvmxdViRK/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1yH8zMARc2YZbGv4C-vLJN6cUvmxdViRK/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laurence&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Jan 2022 15:43:10 GMT</pubDate>
    <dc:creator>Herson</dc:creator>
    <dc:date>2022-01-05T15:43:10Z</dc:date>
    <item>
      <title>Ticky question regarding Filter/DAX/Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2267677#M55052</link>
      <description>&lt;P&gt;Hi members,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table where I need to use slice the Amount by industry/department/group.&lt;/P&gt;&lt;P&gt;However, the tricky part is that when slicing Industry the amount has to be filtered by CATEGORY [CO_101] and [CO_601].&lt;/P&gt;&lt;P&gt;While slicing department, the amount has&amp;nbsp;to be filtered by CATEGORY [CO_301].&lt;/P&gt;&lt;P&gt;When slicing group, the amount has&amp;nbsp;to be filtered by CATEGORY [CO_401].&lt;/P&gt;&lt;P&gt;I wonder how to perform this type of calculation?&lt;/P&gt;&lt;P&gt;The end result I need is to place this measure into a bar chart and people can use slicers to look from different view.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PBIX Link:&amp;nbsp;&lt;A href="https://drive.google.com/file/d/1yH8zMARc2YZbGv4C-vLJN6cUvmxdViRK/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1yH8zMARc2YZbGv4C-vLJN6cUvmxdViRK/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Laurence&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jan 2022 15:43:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2267677#M55052</guid>
      <dc:creator>Herson</dc:creator>
      <dc:date>2022-01-05T15:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: Ticky question regarding Filter/DAX/Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2267690#M55053</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;You can create SWITCH measure which changes calculation logic based on slicer selection. Here is an example of the logic:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SWITCH&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;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;firstslicer&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Measure1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;secondslicer&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;Measure2&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I hope this helps and if it does consider accepting this as a solution!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 05 Jan 2022 15:45:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2267690#M55053</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-01-05T15:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Ticky question regarding Filter/DAX/Slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2268367#M55120</link>
      <description>&lt;P&gt;Thank you ValtteriN for the suggestion!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 00:24:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ticky-question-regarding-Filter-DAX-Slicer/m-p/2268367#M55120</guid>
      <dc:creator>Herson</dc:creator>
      <dc:date>2022-01-06T00:24:15Z</dc:date>
    </item>
  </channel>
</rss>

