<?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: How to filter text column using Dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2697080#M81427</link>
    <description>&lt;P&gt;Thanks Amitchandak, Its displaying count with category, but i want to display filter rows on that table Chart.&lt;/P&gt;</description>
    <pubDate>Fri, 12 Aug 2022 09:34:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-08-12T09:34:12Z</dc:date>
    <item>
      <title>How to filter text column using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2695032#M81283</link>
      <description>&lt;P&gt;I want to filter and show data according to the category. which should be filtered in my Table chart&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product_id&lt;/TD&gt;&lt;TD&gt;Product Name&lt;/TD&gt;&lt;TD&gt;Category&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;a&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;b&lt;/TD&gt;&lt;TD&gt;Charger&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;c&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;d&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;e&lt;/TD&gt;&lt;TD&gt;Charger&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;f&lt;/TD&gt;&lt;TD&gt;Headset&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;g&lt;/TD&gt;&lt;TD&gt;Charger&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;h&lt;/TD&gt;&lt;TD&gt;headset&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;TD&gt;i&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;TD&gt;j&lt;/TD&gt;&lt;TD&gt;Charger&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I want to display whose category is Headset &amp;amp; Mobile&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 11:16:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2695032#M81283</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-11T11:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter text column using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2695689#M81324</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Create a measure and use that with product and product if in visual &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;calculate(countrows(Table), filter(Table, Table[Category] in{"Headset","Mobile"}))&lt;/P&gt;</description>
      <pubDate>Thu, 11 Aug 2022 15:30:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2695689#M81324</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-08-11T15:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter text column using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2697080#M81427</link>
      <description>&lt;P&gt;Thanks Amitchandak, Its displaying count with category, but i want to display filter rows on that table Chart.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 09:34:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2697080#M81427</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-12T09:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter text column using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2719090#M82844</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may try this solution.&lt;/P&gt;
&lt;P&gt;1 Create a measure like this&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;FilterTable = CALCULATE(MAX('Table'[Category]),'Table'[Category] IN {"Headset","Mobile"})&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2 Add filters on this visual to show items when the value is not blank&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In fact, you could simply use Filters pane to achieve it: just tick the category you need to show but leave other catetories unticked.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached the pbix file as reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post helps, then please consider&lt;STRONG&gt; Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Community Support Team _ Caiyun&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 06:54:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-text-column-using-Dax/m-p/2719090#M82844</guid>
      <dc:creator>v-cazheng-msft</dc:creator>
      <dc:date>2022-08-23T06:54:52Z</dc:date>
    </item>
  </channel>
</rss>

