<?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: Measure as a slicer in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4804396#M183774</link>
    <description>&lt;P&gt;Create a disconnected slicer table with values "&amp;gt; 100" and "≤ 100"&lt;BR /&gt;Use it as a slicer in your report&lt;BR /&gt;Write a DAX measure that checks the selected slicer value and flags customers based on YTD order amount&lt;BR /&gt;Apply that flag measure as a filter (= 1) on all visuals — including cards, tables, and charts&lt;/P&gt;</description>
    <pubDate>Fri, 22 Aug 2025 03:50:07 GMT</pubDate>
    <dc:creator>Shahid12523</dc:creator>
    <dc:date>2025-08-22T03:50:07Z</dc:date>
    <item>
      <title>Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790065#M183351</link>
      <description>&lt;P&gt;I have three tables in my Power BI model:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Sales Order Fact&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Order Date&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Customer&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;All these tables are properly connected.&lt;/P&gt;&lt;P&gt;I’ve created a few DAX measures based on them:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Number of Customers with Order amount &amp;gt; $100&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Number of Customers with Order amount ≤ $100&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The amounts are grouped &lt;STRONG&gt;Year-to-Date (YTD)&lt;/STRONG&gt;. So if the user selects &lt;STRONG&gt;August&lt;/STRONG&gt;, the total amount is calculated from &lt;STRONG&gt;January 1st to August 31st&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;All calculations are working correctly. However, I now need to create a &lt;STRONG&gt;slicer&lt;/STRONG&gt; to allow users to filter between &lt;STRONG&gt;"&amp;gt; $100"&lt;/STRONG&gt; and &lt;STRONG&gt;"≤ $100"&lt;/STRONG&gt;. This is where I'm stuck.&lt;/P&gt;&lt;P&gt;I created a &lt;STRONG&gt;measure-based flag&lt;/STRONG&gt;, but I have to &lt;STRONG&gt;manually apply the filter to each visual&lt;/STRONG&gt; — and this report has many visuals. Also, &lt;STRONG&gt;I’m unable to apply the measure as a filter on Card visuals&lt;/STRONG&gt;, which is a limitation.&lt;/P&gt;&lt;P&gt;Is there any alternative approach to creating a slicer that dynamically filters visuals based on &lt;STRONG&gt;"&amp;gt; $100"&lt;/STRONG&gt; or &lt;STRONG&gt;"≤ $100"&lt;/STRONG&gt; orders?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected output&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Customer table contains fields such as Name, Address, and customer Number.&lt;BR /&gt;The Order Date table is a standard date dimension with fields like Order Date and Month, Year.&lt;BR /&gt;The Sales Order Fact table includes details like Order Amount, Quantity, and other transaction-level data.&lt;/P&gt;&lt;P&gt;The report includes multiple visuals — such as cards, tables, bar charts, and several slicers.&lt;/P&gt;&lt;P&gt;I want to implement a filter where:&lt;/P&gt;&lt;P&gt;If the user selects "&amp;gt; 100", the report should display data only for customers whose total order amount is greater than $100.&lt;/P&gt;&lt;P&gt;If the user selects "≤ 100", the report should show data only for customers whose total order amount is $100 or less.&lt;/P&gt;&lt;P&gt;This filter should apply across the entire report to all visuals consistently.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 11:37:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790065#M183351</guid>
      <dc:creator>Ethanhunt123</dc:creator>
      <dc:date>2025-08-07T11:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790106#M183352</link>
      <description>&lt;P&gt;Please specify more the content of each table you have and show the data model connections&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What should happen if I select &amp;gt;100? What the &amp;gt;100 should filter? And in what table?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would solve in this way&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 create a table with one column and two rows&lt;/P&gt;&lt;P&gt;&amp;lt;100&lt;/P&gt;&lt;P&gt;&amp;gt;100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This table will be not connected&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I select nothing or all the values of the slicer you see everything you see now&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Otherwise you will see what you specify&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do you think? Can tou provide sanples of the tables so I create the pbix?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 11:26:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790106#M183352</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-07T11:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790118#M183354</link>
      <description>&lt;P&gt;The Customer table contains fields such as Name, Address, and customer Number.&lt;BR /&gt;The Order Date table is a standard date dimension with fields like Order Date and Month, Year.&lt;BR /&gt;The Sales Order Fact table includes details like Order Amount, Quantity, and other transaction-level data.&lt;/P&gt;&lt;P&gt;The report includes multiple visuals — such as cards, tables, bar charts, and several slicers.&lt;/P&gt;&lt;P&gt;I want to implement a filter where:&lt;/P&gt;&lt;P&gt;If the user selects "&amp;gt; 100", the report should display data only for customers whose total order amount is greater than $100.&lt;/P&gt;&lt;P&gt;If the user selects "≤ 100", the report should show data only for customers whose total order amount is $100 or less.&lt;/P&gt;&lt;P&gt;This filter should apply across the entire report to all visuals consistently.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 11:37:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790118#M183354</guid>
      <dc:creator>Ethanhunt123</dc:creator>
      <dc:date>2025-08-07T11:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790156#M183356</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 12:00:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790156#M183356</guid>
      <dc:creator>Ethanhunt123</dc:creator>
      <dc:date>2025-08-07T12:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790449#M183363</link>
      <description>&lt;P&gt;OK, now it is clear&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, can you share a sample of the data in a pbix (or just the sample of the data and I shall build the pbix), so I create the solution? Please share a few rows of all the tables involved&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Othwerwise we try here by messages but that is usually long and painful without data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2025 15:50:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4790449#M183363</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-07T15:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4794226#M183484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="123082" data-lia-user-login="Ethanhunt123" class="lia-mention lia-mention-user"&gt;Ethanhunt123&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;can you share a sample of the data in a pbix as our super user requested as this will make us easier to resolve issue your facing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks,&lt;/P&gt;
&lt;P&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;MS Fabric communitry support&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 09:39:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4794226#M183484</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-08-12T09:39:53Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4801020#M183678</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="123082" data-lia-user-login="Ethanhunt123" class="lia-mention lia-mention-user"&gt;Ethanhunt123&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;we are reaching out to confirm whether your query got resolved or you still need any help here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;prashanth&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2025 11:34:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4801020#M183678</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-08-19T11:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Measure as a slicer</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4804396#M183774</link>
      <description>&lt;P&gt;Create a disconnected slicer table with values "&amp;gt; 100" and "≤ 100"&lt;BR /&gt;Use it as a slicer in your report&lt;BR /&gt;Write a DAX measure that checks the selected slicer value and flags customers based on YTD order amount&lt;BR /&gt;Apply that flag measure as a filter (= 1) on all visuals — including cards, tables, and charts&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 03:50:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Measure-as-a-slicer/m-p/4804396#M183774</guid>
      <dc:creator>Shahid12523</dc:creator>
      <dc:date>2025-08-22T03:50:07Z</dc:date>
    </item>
  </channel>
</rss>

