<?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: DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996700#M155348</link>
    <description>&lt;P&gt;Thank you so much. The way that you solve was easy and I got replay in my data source&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jun 2024 17:41:13 GMT</pubDate>
    <dc:creator>LeonardCs</dc:creator>
    <dc:date>2024-06-17T17:41:13Z</dc:date>
    <item>
      <title>DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996492#M155306</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with column 'number' and column 'name'.&lt;BR /&gt;At column 'number' some people has '00' and '02', and some people has '00' and outhers numbers.&lt;BR /&gt;I need a table with the name of all people that has only number '00' and outhers numbers.&lt;BR /&gt;I &lt;STRONG&gt;DON'T&lt;/STRONG&gt; need the people that has '00' and '02' at same time (like bold text below)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;number&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;name&lt;/P&gt;&lt;P&gt;00&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; Leonardo&lt;/P&gt;&lt;P&gt;05&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; Leonardo&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;00&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; Eduardo&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;02&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; Eduardo&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;00&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; Felipe&lt;/P&gt;&lt;P&gt;06&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; Felipe&lt;/P&gt;&lt;P&gt;00&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; Austin&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;00&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;Will&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;02&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;Will&lt;/STRONG&gt;&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;My table need has Leonardo, Felipe and Austin.&lt;/P&gt;&lt;P&gt;Thank all and sorry my english. I'm Brazlian.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 15:39:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996492#M155306</guid>
      <dc:creator>LeonardCs</dc:creator>
      <dc:date>2024-06-17T15:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996646#M155339</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="666820" data-lia-user-login="LeonardCs" class="lia-mention lia-mention-user"&gt;LeonardCs&lt;/a&gt;&amp;nbsp;You could create a Complex Selector like the following and then just filter for 1. PBIX is attached.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Flag Measure = 
    VAR __2s = COUNTROWS( FILTER( 'Table', [number] = "02" ))
    VAR __Result = IF( __2s &amp;gt; 0, 0, 1 )
RETURN
    __Result&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 17:06:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996646#M155339</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-17T17:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996652#M155340</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;LI-CODE lang="markup"&gt;Name new table =
VAR _list =
    SUMMARIZE (
        FILTER (
            ADDCOLUMNS (
                VALUES ( data[name] ),
                "@condition", CALCULATE ( COUNTROWS ( FILTER ( data, data[number] IN { "00", "02" } ) ) )
            ),
            [@condition] &amp;lt;&amp;gt; 2
        ),
        data[name]
    )
RETURN
    FILTER ( data, data[name] IN _list )
&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Jun 2024 17:08:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996652#M155340</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-06-17T17:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996700#M155348</link>
      <description>&lt;P&gt;Thank you so much. The way that you solve was easy and I got replay in my data source&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 17:41:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996700#M155348</guid>
      <dc:creator>LeonardCs</dc:creator>
      <dc:date>2024-06-17T17:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996704#M155350</link>
      <description>&lt;P&gt;You understood correctly. Thank you so much for help me &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 17:44:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/3996704#M155350</guid>
      <dc:creator>LeonardCs</dc:creator>
      <dc:date>2024-06-17T17:44:17Z</dc:date>
    </item>
  </channel>
</rss>

