<?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: Adding a FILTER to a report less than a value and don't SUM columns in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2676687#M80018</link>
    <description>&lt;P&gt;Hello &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;&lt;/P&gt;&lt;P&gt;Thank you for your help! But I have not explained well.&lt;/P&gt;&lt;P&gt;Please see the image with desired output&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 02 Aug 2022 22:35:38 GMT</pubDate>
    <dc:creator>yellow43</dc:creator>
    <dc:date>2022-08-02T22:35:38Z</dc:date>
    <item>
      <title>Adding a FILTER to a report less than a value and don't SUM columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2674014#M79837</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report with a table (below image) that shows Products and sales for each day&lt;/P&gt;&lt;P&gt;I have created a measure to calculate the sum of all sales for each product:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Total Sales = SUM(Table[Sales_Invoice])&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;In this table I have applied a filter to show only the product that have less than 100 units sold.&lt;/P&gt;&lt;P&gt;For 1 day it works fine, but if the range of dates is more than 1, the behaviour is that it sums the units of the dates.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your help.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 22:58:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2674014#M79837</guid>
      <dc:creator>yellow43</dc:creator>
      <dc:date>2022-08-01T22:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a FILTER to a report less than a value and don't SUM columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2674253#M79848</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;The below is finding quantity that is lower than 100 per day per product.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I hope the below can provide some ideas on how to create a solution for your dataset.&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;Quantity less than 100 per day: =
CALCULATE (
    [Quantity measure:],
    FILTER (
        SUMMARIZE ( Data, 'Product'[Product], 'Calendar'[Date] ),
        [Quantity measure:] &amp;lt; 100
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 02 Aug 2022 02:51:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2674253#M79848</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-08-02T02:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a FILTER to a report less than a value and don't SUM columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2676687#M80018</link>
      <description>&lt;P&gt;Hello &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;&lt;/P&gt;&lt;P&gt;Thank you for your help! But I have not explained well.&lt;/P&gt;&lt;P&gt;Please see the image with desired output&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 22:35:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2676687#M80018</guid>
      <dc:creator>yellow43</dc:creator>
      <dc:date>2022-08-02T22:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a FILTER to a report less than a value and don't SUM columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2677203#M80039</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;Please check the attached file. Or, please share your sample pbix file's link here and then I can try to look into it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2022 05:01:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2677203#M80039</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-08-03T05:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a FILTER to a report less than a value and don't SUM columns</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2680947#M80291</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="414682" data-lia-user-login="yellow43" class="lia-mention lia-mention-user"&gt;yellow43&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. Create calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Month =
FORMAT('Table'[Date],"dd")
&amp;amp;"/"&amp;amp;
FORMAT('Table'[Date],"mmm")

&lt;/LI-CODE&gt;
&lt;P&gt;2. Create measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum_Measure =
var _sum=
CALCULATE(
    SUM('Table'[Qty Sold]),FILTER(ALL('Table'),
    'Table'[Product]=MAX('Table'[Product])&amp;amp;&amp;amp;
    'Table'[Month]=MAX('Table'[Month])))
    return
IF(
_sum&amp;gt;=100,BLANK(),_sum)

&lt;/LI-CODE&gt;
&lt;P&gt;3. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If you need pbix, please click &lt;A href="https://m365x97431909-my.sharepoint.com/:u:/g/personal/ly_m365x97431909_onmicrosoft_com/EauzUcT1EyBAsCclTuW0FtUBlik28oBq6qc8LxhJyginzg?e=QSlvSN" target="_blank"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2022 08:19:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Adding-a-FILTER-to-a-report-less-than-a-value-and-don-t-SUM/m-p/2680947#M80291</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-04T08:19:22Z</dc:date>
    </item>
  </channel>
</rss>

