<?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: Negative  churn rate?? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813955#M89157</link>
    <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2022 12:39:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-10-03T12:39:18Z</dc:date>
    <item>
      <title>Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2810320#M88968</link>
      <description>&lt;P&gt;Hi there.&amp;nbsp; I am in the process of building a Customer Lifetime Value for my organisation. I started by calculating the Churn Rate {(customers at the beginning of the period - Customers at the end of the period)/ Customers at the beginning of the period}. My problem is that in other periods the customers at the end of the period are more than customers at the beginning resulting in a negative churn rate e.g (100-120)/100= -20%. I also use this churn rate to calculate the Average Life Time using the following formula:&lt;/P&gt;&lt;P&gt;1/ Churn rate and CLV = Average Revenue Per Customer x Gross Profit x ALT. The above logic will result in a negative CLV. Is this normal and if so, what could be the explanation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Summarised Questions:&lt;/P&gt;&lt;P&gt;1. Can the churn rate be negative?&lt;/P&gt;&lt;P&gt;2. Can the CLV be negative?&lt;/P&gt;&lt;P&gt;3. What is the explanation for the negative churn?&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;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2022 19:59:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2810320#M88968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-01T19:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2810487#M88982</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;So customer churn rate should not be negative as that violates the premise of the metric. What you need to do is to calculate the number of customers at the beginning of a period and then you need to see how many of those customers you have at the end of the period. If you do your calculation that way, then your churn rate can never be negative.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Oct 2022 22:22:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2810487#M88982</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-01T22:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2812033#M89050</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;Thanks for the insights.&amp;nbsp; I calculated the churn by doing the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Customers at the beginning of the period - Customers at the end of the period)/&amp;nbsp;Customers at the beginning of the period&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting a negative churn because the number of customers at the end of the period was more meaning there was growth in the number of customers. The customers didn't churn. My confusion is on how best to handle such a scenario in CLV calculation. Should I use revenue churn instead of customer churn?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 18:25:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2812033#M89050</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-02T18:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2812047#M89052</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;But that's not customer churn. You have to get the ID's of your customers at the beginning of the period and the ID's of your customers at the end of your period and then do:&lt;/P&gt;
&lt;P&gt;VAR __ChurnedCustomers = COUNTROWS(EXCEPT( CustomersAtBegin, CustomersAtEnd))&lt;/P&gt;
&lt;P&gt;This is your numerator. Then you don't have to worry about negative customer churn numbers in your CLV calculation.&lt;/P&gt;</description>
      <pubDate>Sun, 02 Oct 2022 18:40:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2812047#M89052</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-02T18:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813627#M89129</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp; My problem is that the Customers at the end are higher than those at the Beginning. This is my formula:&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;</description>
      <pubDate>Mon, 03 Oct 2022 10:15:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813627#M89129</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-03T10:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813849#M89148</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;But that is not churn rate. Churn rate is the number of customers at the beginning of the period minus the count of those same customers that you have at the end of period divided by the number of customers you had at the beginning of the period. If you post sample data that includes customer identifiers, I can get you the correct formula but it would look something like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Churn = 
  VAR __Table = SUMMARIZE('Table',[CustomerKey],"__Prev",[ActiveMemberPreviousMonth],"__Current",[ActiveMember])
  VAR __Prev = DISTINCT(SELECTCOLUMNS(FILTER(__Table,[__Prev] = 1),"__Cust",[CustomerKey]))
  VAR __Current = DISTINCT(SELECTCOLUMNS(FILTER(__Table,[__Current] = 1),"__Cust",[CustomerKey]))
  VAR __Lost = COUNTROWS(EXCEPT(__Prev, __Current))
RETURN
  DIVIDE(__Lost, COUNTROWS(__Prev), 0)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 03 Oct 2022 12:08:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813849#M89148</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-03T12:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813955#M89157</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2022 12:39:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2813955#M89157</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-03T12:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2815900#M89287</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&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;</description>
      <pubDate>Tue, 04 Oct 2022 06:23:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2815900#M89287</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-04T06:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Negative  churn rate??</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2815948#M89293</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;I perfectly understand that you have more customers in a subsequent month versus a previous month. What you seem to fail to understand is that has zero bearing on customer churn rate. It means absolutely, 100% nothing. Read the definition of customer churn rate:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.geckoboard.com/best-practice/kpi-examples/customer-churn-rate/#:~:text=Customer%20churn%20rate%20is%20the%20percentage%20of%20customers,the%20business%2C%20such%20as%2090%20or%20120%20days." target="_blank"&gt;Customer Churn Rate | KPI example | Geckoboard&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Customer churn rate is the % of customers that cancel/don't renew their subscription/whatever. It has absolutely nothing to do with adding customers. Hence, you are complaining about negative churn rates when you are doing the calculation 100% incorrect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think there is anything else I can say on the matter without blowing a gasket.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 06:58:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Negative-churn-rate/m-p/2815948#M89293</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-10-04T06:58:17Z</dc:date>
    </item>
  </channel>
</rss>

