<?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 Number of Customers with Growth in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2355962#M60003</link>
    <description>&lt;P&gt;Gentlemen, I need help again, I would like to measure in a certain period, how many times a customer had a drop in billing compared to the previous month, Ex:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Client Month %Current Month x Previous Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bakery Jan -15%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bakery Feb -12%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bakery Mar&amp;nbsp; 5%&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;&lt;P&gt;In the example above, I would have a measure for the bakery customer, informing that he had 2 (two) months with which billing drop compared to the previous month!!!&lt;/P&gt;</description>
    <pubDate>Wed, 23 Feb 2022 12:59:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-02-23T12:59:56Z</dc:date>
    <item>
      <title>Number of Customers with Growth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2355962#M60003</link>
      <description>&lt;P&gt;Gentlemen, I need help again, I would like to measure in a certain period, how many times a customer had a drop in billing compared to the previous month, Ex:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Client Month %Current Month x Previous Month&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bakery Jan -15%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bakery Feb -12%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;bakery Mar&amp;nbsp; 5%&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;&lt;P&gt;In the example above, I would have a measure for the bakery customer, informing that he had 2 (two) months with which billing drop compared to the previous month!!!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 12:59:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2355962#M60003</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T12:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: Number of Customers with Growth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356038#M60011</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Assume you have Billing measure &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Billing % =&lt;/P&gt;
&lt;P&gt;divide([Billing], calculate([Billing], allselected()) )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then this month vs Last month , date table time intelligence&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MTD Sales = CALCULATE([Billing %],DATESMTD('Date'[Date]))&lt;BR /&gt;last MTD Sales = CALCULATE([Billing %],DATESMTD(dateadd('Date'[Date],-1,MONTH)))&lt;BR /&gt;last month Sales = CALCULATE([Billing %],previousmonth('Date'[Date]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Power BI — Month on Month with or Without Time Intelligence &lt;BR /&gt;&lt;A href="https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e" target="_blank"&gt;https://medium.com/@amitchandak.1978/power-bi-mtd-questions-time-intelligence-3-5-64b0b4a4090e&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=6LUBbvcxtKA" target="_blank"&gt;https://www.youtube.com/watch?v=6LUBbvcxtKA&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 13:27:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356038#M60011</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-02-23T13:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Number of Customers with Growth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356455#M60036</link>
      <description>&lt;P&gt;Thanks for the quick response, but in fact I already have the evolution calculation in relation to the previous month, what I would need was to analyze based on this calculation, count in a certain period, 3 months for example, how many times we had a drop in evolution! !!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 15:21:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356455#M60036</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-23T15:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Number of Customers with Growth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356683#M60050</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , check if rolling 3 can help&lt;/P&gt;
&lt;P&gt;Rolling 3 = CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],MAX('Date'[Date ]),-3,MONTH))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Rolling 3 before three= CALCULATE(sum(Sales[Sales Amount]),DATESINPERIOD('Date'[Date ],eomonth(MAX('Date'[Date ]),-3),-3,MONTH))&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 16:23:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356683#M60050</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-02-23T16:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Number of Customers with Growth</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356766#M60059</link>
      <description>&lt;P&gt;I think a SUMX over a summary table would give you what you need&lt;/P&gt;&lt;PRE&gt;Num months with reduction =&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUMX(&lt;BR /&gt;   ADDCOLUMNS( SUMMARIZE( Customer, Customer[Customer Name], 'Date'[Year Month] )&lt;BR /&gt;      "@monthly change", [Month on Month Change]&lt;BR /&gt;   ),&lt;BR /&gt;   IF ( [@monthly change] &amp;lt; 1, 1 )&lt;BR /&gt;),&lt;BR /&gt;DATESBETWEEN( 'Date'[Date], DATE( YEAR( TODAY() ), MONTH( TODAY() ) - 3, 1 ), TODAY() )&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Feb 2022 16:48:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Number-of-Customers-with-Growth/m-p/2356766#M60059</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-02-23T16:48:35Z</dc:date>
    </item>
  </channel>
</rss>

