<?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 How this DAX function works. Please someone explain this, I am not able to understang it in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995913#M100954</link>
    <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Products with Regions = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [Total Products],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sales)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//Used to work out how many customers sold to within each regions&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Sun, 01 Jan 2023 14:11:17 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-01-01T14:11:17Z</dc:date>
    <item>
      <title>How this DAX function works. Please someone explain this, I am not able to understang it</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995913#M100954</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Products with Regions = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; [Total Products],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sales)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//Used to work out how many customers sold to within each regions&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 01 Jan 2023 14:11:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995913#M100954</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-01T14:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: How this DAX function works. Please someone explain this, I am not able to understang it</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995918#M100955</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've never used this method before (placing the fact table in the CALCULATE filter when calculating a measure related to dimension table) but I noticed that many people do that and it works. It seems that when doing that the engine intersects the product keys in your case from the product table with the product keys from the sales table which is filtered by country/region from the country table. Usually I would make the code more meaningful by CROSSFILTER the relationship between Sales and Products to BOTH. That would work as well. Country filters Sales and Sales cossfilters Products.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jan 2023 14:30:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995918#M100955</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-01T14:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: How this DAX function works. Please someone explain this, I am not able to understang it</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995947#M100957</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also SUMMARIZE the Sales table (which is already filtered by County) by 'Product'[Product Key]. That would provide the best performance among all the three options.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jan 2023 15:49:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995947#M100957</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-01-01T15:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: How this DAX function works. Please someone explain this, I am not able to understang it</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995954#M100958</link>
      <description>&lt;P&gt;This pattern leverages the Expanded Table behavior of DAX. Your products table is part of the expanded Sales table. You can read more about Expanded Table here.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sqlbi.com/articles/expanded-tables-in-dax/" target="_blank"&gt;Expanded tables in DAX - SQLBI&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jan 2023 15:58:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-this-DAX-function-works-Please-someone-explain-this-I-am-not/m-p/2995954#M100958</guid>
      <dc:creator>ppm1</dc:creator>
      <dc:date>2023-01-01T15:58:10Z</dc:date>
    </item>
  </channel>
</rss>

