<?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 Matrix to have values that show 1 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2883129#M93387</link>
    <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;How about this, this is a table.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I want the Corp FPC values to only appear in this able if they are not duplicated.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;E.g. I might have a FPC "920332" and it may say 1 for 5 different people... I don't want this value in this table&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;P&gt;920332 name&lt;/P&gt;&lt;P&gt;920332 name&lt;/P&gt;&lt;P&gt;etc...&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If it's duplicated, I don't want it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But if i have FPC "932101" and it says 1 only ONE TIME, then I want that value in this table&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want the FPC to show up if it's showcasing once in this entire table.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 03 Nov 2022 14:15:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-11-03T14:15:19Z</dc:date>
    <item>
      <title>Filter Matrix to have values that show 1</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2880145#M93183</link>
      <description>&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;Basically I have this matrix and I want it to only return values in the 'Count of 20 Customer Team Name' and I need these values to be 1... does anyone have a solution to filter it? I tried the filter panel, but because each FPC can go to a specific place once, it didn't help.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Another solution could be if I turned this to a table... but what would happen is the FPC would show 1 every time, but you would have duplicate FPCs (e.g. FPC 003 would have like 6 entries if it's currently 6 in this matrix)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 12:45:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2880145#M93183</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-02T12:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrix to have values that show 1</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2882469#M93339</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, I made a sample and here is my solution.&lt;/P&gt;
&lt;P&gt;I wonder if you want to only show the value of&amp;nbsp;&lt;SPAN&gt;'Count of 20 Customer Team Name' which is 1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can create a column by using IF function as below.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = 
IF('Tabelle1'[count]=1,'Tabelle1'[count])&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Or you can use a slicer to select "1".&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If the result above is not what you need, please describe your request more clearly and had better provide us a expected output to help you better.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attach my sample below for your reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ xiaosun&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps,&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 09:40:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2882469#M93339</guid>
      <dc:creator>v-xiaosun-msft</dc:creator>
      <dc:date>2022-11-03T09:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrix to have values that show 1</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2883129#M93387</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;How about this, this is a table.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I want the Corp FPC values to only appear in this able if they are not duplicated.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;E.g. I might have a FPC "920332" and it may say 1 for 5 different people... I don't want this value in this table&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;P&gt;920332 name&lt;/P&gt;&lt;P&gt;920332 name&lt;/P&gt;&lt;P&gt;etc...&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If it's duplicated, I don't want it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But if i have FPC "932101" and it says 1 only ONE TIME, then I want that value in this table&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want the FPC to show up if it's showcasing once in this entire table.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 14:15:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2883129#M93387</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-03T14:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Matrix to have values that show 1</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2899220#M94369</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your message, check whether the result below is what you need.&lt;/P&gt;
&lt;P&gt;Data sample:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Create a calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column =
IF (
    CALCULATE (
        COUNT ( 'Table'[count] ),
        FILTER ( 'Table', 'Table'[fpc] = EARLIER ( 'Table'[fpc] ) )
    ) &amp;gt; 1,
    BLANK (),
    1
)&lt;/LI-CODE&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I attach my sample below for your reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ xiaosun&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps,&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 05:49:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Matrix-to-have-values-that-show-1/m-p/2899220#M94369</guid>
      <dc:creator>v-xiaosun-msft</dc:creator>
      <dc:date>2022-11-11T05:49:03Z</dc:date>
    </item>
  </channel>
</rss>

