<?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/2157186#M49851</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114882" data-lia-user-login="sarjensystems1" class="lia-mention lia-mention-user"&gt;sarjensystems1&lt;/a&gt; Thanks for the reply- I tried that but it didn't help&lt;/P&gt;</description>
    <pubDate>Wed, 27 Oct 2021 06:10:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-10-27T06:10:06Z</dc:date>
    <item>
      <title>DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157122#M49847</link>
      <description>&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;distinct count of sales =&lt;BR /&gt;CALCULATE (&lt;BR /&gt;distinctcount('fact'[order_id],&lt;BR /&gt;FILTER ( 'Dim Channel', [Exclude Dim Channel] &amp;gt;= 1 ),&lt;BR /&gt;FILTER ( 'Dim Item', [Exclude Dim Item] &amp;gt;= 1 ),&lt;BR /&gt;FILTER ( 'Dim REF', [Exclude Dim REF] &amp;gt;= 1 )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;This measure is taking ages to load.&lt;/P&gt;&lt;P&gt;Could you please help me with this?&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24542" data-lia-user-login="PaulDBrown" class="lia-mention lia-mention-user"&gt;PaulDBrown&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 05:33:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157122#M49847</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-27T05:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157149#M49848</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1861" data-lia-user-login="Bharat" class="lia-mention lia-mention-user"&gt;Bharat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Have you tried doing same using 'var' ?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 05:53:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157149#M49848</guid>
      <dc:creator>sarjensystems1</dc:creator>
      <dc:date>2021-10-27T05:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157186#M49851</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="114882" data-lia-user-login="sarjensystems1" class="lia-mention lia-mention-user"&gt;sarjensystems1&lt;/a&gt; Thanks for the reply- I tried that but it didn't help&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 06:10:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157186#M49851</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-27T06:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157214#M49853</link>
      <description>&lt;P&gt;Then, instead of using measure use calculated columns by making flags (for conditions i.e. "&amp;gt;=1") , it might doesn't takes too much time to load calculation unlike measure.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 06:22:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157214#M49853</guid>
      <dc:creator>sarjensystems1</dc:creator>
      <dc:date>2021-10-27T06:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157266#M49854</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can you try the following?.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;distinct count of sales =
CALCULATE (
    SUMX ( DISTINCT( 'fact'[order_id] ) , 1 ),
    FILTER ( 'Dim Channel', [Exclude Dim Channel] &amp;gt;= 1 ),
    FILTER ( 'Dim Item', [Exclude Dim Item] &amp;gt;= 1 ),
    FILTER ( 'Dim REF', [Exclude Dim REF] &amp;gt;= 1 )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Oct 2021 06:43:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX/m-p/2157266#M49854</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2021-10-27T06:43:39Z</dc:date>
    </item>
  </channel>
</rss>

