<?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: Perform filtering on column value based on condition in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400176#M62769</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;, Try this for table:-&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 = 
SUMMARIZE (
     FILTER (
        'Table',
        CALCULATETABLE ( VALUES ( 'Table'[CR NO] ), 'Table'[Team] = "Superuser" )
            &amp;amp;&amp;amp; CALCULATETABLE ( VALUES ( 'Table'[CR NO] ), 'Table'[Team] = "Requestor" )
    ),
    'Table'[CR NO],'Table'[Team]
)&lt;/LI-CODE&gt;
&lt;P&gt;Output:-&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Mar 2022 09:48:00 GMT</pubDate>
    <dc:creator>Samarth_18</dc:creator>
    <dc:date>2022-03-17T09:48:00Z</dc:date>
    <item>
      <title>Perform filtering on column value based on condition</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2399562#M62725</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table where i need to filter a team when it has both requestor and superuser for each CR No. Eg;- CR 130 has both Requestor and superuser so it is present in my output table. CR 128 has only superuser so its not present in my output table.What should i do to get output table.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 05:30:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2399562#M62725</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-17T05:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Perform filtering on column value based on condition</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2399595#M62727</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;Create a measure like below and use it as filter on your visual:-&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
COUNTROWS (
    FILTER (
        'Table',
        CALCULATETABLE ( VALUES ( 'Table'[CR NO] ), 'Table'[Team] = "Superuser" )
            &amp;amp;&amp;amp; CALCULATETABLE ( VALUES ( 'Table'[CR NO] ), 'Table'[Team] = "Requestor" )
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Output:-&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Samarth&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 05:43:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2399595#M62727</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2022-03-17T05:43:50Z</dc:date>
    </item>
    <item>
      <title>Re: Perform filtering on column value based on condition</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400026#M62759</link>
      <description>&lt;P&gt;Hi samarth, Thanks for replying. Is it possible for to generate a new table with above input table with the result.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 08:58:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400026#M62759</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-17T08:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Perform filtering on column value based on condition</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400176#M62769</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;, Try this for table:-&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 = 
SUMMARIZE (
     FILTER (
        'Table',
        CALCULATETABLE ( VALUES ( 'Table'[CR NO] ), 'Table'[Team] = "Superuser" )
            &amp;amp;&amp;amp; CALCULATETABLE ( VALUES ( 'Table'[CR NO] ), 'Table'[Team] = "Requestor" )
    ),
    'Table'[CR NO],'Table'[Team]
)&lt;/LI-CODE&gt;
&lt;P&gt;Output:-&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 09:48:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400176#M62769</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2022-03-17T09:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: Perform filtering on column value based on condition</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400458#M62788</link>
      <description>&lt;P&gt;Thank you Samarth for both the logics. Both are correct and working fine.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 11:15:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Perform-filtering-on-column-value-based-on-condition/m-p/2400458#M62788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-17T11:15:17Z</dc:date>
    </item>
  </channel>
</rss>

