<?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 create calculated table with numeric condition. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2892468#M93925</link>
    <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;for giving the solution it worked.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Meanwhile I also found this alternative that works too.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SUMMARIZECOLUMNS (
    Orders[Region],
    FILTER ( VALUES ( Orders[Region] ), [Total Sale] &amp;gt; 500000 ),
    "Total Sale", Sum(Orders[Sales])
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Nov 2022 14:07:25 GMT</pubDate>
    <dc:creator>kavitabehera</dc:creator>
    <dc:date>2022-11-08T14:07:25Z</dc:date>
    <item>
      <title>How to create calculated table with numeric condition.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2882957#M93374</link>
      <description>&lt;P&gt;I want to create a calculated table with Region and Sales where the sale is greater than 500,000.&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the DAX I created to generate the table.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I can also create a text based filter condition, but I am unable to create the numerical condition.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DAX&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SUMMARIZECOLUMNS&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;Orders[Region]&lt;/SPAN&gt;,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;Orders, &lt;SPAN&gt;Orders[Region]&lt;/SPAN&gt; = &lt;SPAN&gt;"South"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;"Sale"&lt;/SPAN&gt;, &lt;SPAN&gt;SUM&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt; &lt;SPAN&gt;Orders[Sales]&lt;/SPAN&gt; &lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52019" data-lia-user-login="Helper" class="lia-mention lia-mention-user"&gt;Helper&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 13:16:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2882957#M93374</guid>
      <dc:creator>kavitabehera</dc:creator>
      <dc:date>2022-11-03T13:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create calculated table with numeric condition.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2883037#M93379</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but please try below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New table =
FILTER (
    SUMMARIZECOLUMNS ( Orders[Region], "@Sale", SUM ( Orders[Sales] ) ),
    [@Sale] &amp;gt;= 500000
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 13:38:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2883037#M93379</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-11-03T13:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create calculated table with numeric condition.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2892468#M93925</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;&amp;nbsp;for giving the solution it worked.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Meanwhile I also found this alternative that works too.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SUMMARIZECOLUMNS (
    Orders[Region],
    FILTER ( VALUES ( Orders[Region] ), [Total Sale] &amp;gt; 500000 ),
    "Total Sale", Sum(Orders[Sales])
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 14:07:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-calculated-table-with-numeric-condition/m-p/2892468#M93925</guid>
      <dc:creator>kavitabehera</dc:creator>
      <dc:date>2022-11-08T14:07:25Z</dc:date>
    </item>
  </channel>
</rss>

