<?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: Products that was NOT sold in a week in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2605362#M75414</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="391322" data-lia-user-login="agoulart" class="lia-mention lia-mention-user"&gt;agoulart&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide some sample data or simple pbix files? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Charlotte&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Jun 2022 01:53:58 GMT</pubDate>
    <dc:creator>v-zhangti</dc:creator>
    <dc:date>2022-06-28T01:53:58Z</dc:date>
    <item>
      <title>Products that was NOT sold in a week</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2601343#M75187</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Does anyone have an example of how to show products that were not sold by a specific week?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be DAX the best approach to it?&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;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 20:23:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2601343#M75187</guid>
      <dc:creator>agoulart</dc:creator>
      <dc:date>2022-06-24T20:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Products that was NOT sold in a week</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2601378#M75188</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="391322" data-lia-user-login="agoulart" class="lia-mention lia-mention-user"&gt;agoulart&lt;/a&gt;&amp;nbsp;-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To separate items by specific weeks, check out this blog (&amp;amp; video).&lt;/P&gt;&lt;P&gt;Let me know if this is helpful to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://bielite.com/blog/week-start-date-power-bi-dax/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://bielite.com/blog/week-start-date-power-bi-dax/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nathan&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 20:40:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2601378#M75188</guid>
      <dc:creator>WinterMist</dc:creator>
      <dc:date>2022-06-24T20:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Products that was NOT sold in a week</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2601677#M75207</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your desired outcome looks like, but please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;If the not-sold-products-list is needed to know, one of ways to solve is to utilize EXCEPT dax function.&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;LI-CODE lang="markup"&gt;Not sold products list by week: = 
VAR _soldproductslist =
    CALCULATETABLE ( VALUES ( Products[Product] ), Sales )
VAR _allproductslist =
    VALUES ( Products[Product] )
VAR _notsoldproductslist =
    EXCEPT ( _allproductslist, _soldproductslist )
RETURN
    CONCATENATEX ( _notsoldproductslist, Products[Product], ", " )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2022 07:44:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2601677#M75207</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-06-25T07:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Products that was NOT sold in a week</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2605362#M75414</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="391322" data-lia-user-login="agoulart" class="lia-mention lia-mention-user"&gt;agoulart&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you provide some sample data or simple pbix files? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _Charlotte&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2022 01:53:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Products-that-was-NOT-sold-in-a-week/m-p/2605362#M75414</guid>
      <dc:creator>v-zhangti</dc:creator>
      <dc:date>2022-06-28T01:53:58Z</dc:date>
    </item>
  </channel>
</rss>

