<?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: persistency check in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/persistency-check/m-p/1590729#M31950</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , on the way, is I create a month year column and do count distinct month year for rolling three month data. So if If you get 3 it means they got for all three months.&lt;/P&gt;
&lt;P&gt;Canceled in next month, check for next month based on cancellation date , You need to&amp;nbsp; join purchase and cancel both to same date table and the use userelationship and time intelligence&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;Rolling 3 = CALCULATE(distinctcount(Table[Month Year]),DATESINPERIOD('Date'[Date],max('Date'[Date]),-3,MONTH))&lt;/P&gt;
&lt;P&gt;Rolling 3 = CALCULATE(distinctcount(Table[Month Year]),DATESINPERIOD('Date'[Date],eomonth(max('Date'[Date]),0),-3,MONTH))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Purcahse in last three months /Customer id or policy id(if same policy)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example of this month next month&lt;/P&gt;
&lt;P&gt;MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))&lt;BR /&gt;next MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],1,MONTH)))&lt;/P&gt;
&lt;P&gt;next month Sales = CALCULATE(SUM(Sales[Sales Amount]),nextmonth('Date'[Date]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Userelationship : &lt;A href="https://www.youtube.com/watch?v=e6Y-l_JtCq4" target="_blank"&gt;https://www.youtube.com/watch?v=e6Y-l_JtCq4&lt;/A&gt;&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;countx( values(Table[Policy ID]), if( not(isbalnk([Rolling 3])),1,blank()))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jan 2021 06:55:31 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2021-01-12T06:55:31Z</dc:date>
    <item>
      <title>persistency check</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/persistency-check/m-p/1590631#M31947</link>
      <description>&lt;P&gt;I have an issurance data where i have to check for persistency. I need help on how many people bought the policy throughout the 3 months period or how many people cancelled their policy after one momth. How can i formulate persistency on power bi?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 05:19:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/persistency-check/m-p/1590631#M31947</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-01-12T05:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: persistency check</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/persistency-check/m-p/1590729#M31950</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , on the way, is I create a month year column and do count distinct month year for rolling three month data. So if If you get 3 it means they got for all three months.&lt;/P&gt;
&lt;P&gt;Canceled in next month, check for next month based on cancellation date , You need to&amp;nbsp; join purchase and cancel both to same date table and the use userelationship and time intelligence&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;Rolling 3 = CALCULATE(distinctcount(Table[Month Year]),DATESINPERIOD('Date'[Date],max('Date'[Date]),-3,MONTH))&lt;/P&gt;
&lt;P&gt;Rolling 3 = CALCULATE(distinctcount(Table[Month Year]),DATESINPERIOD('Date'[Date],eomonth(max('Date'[Date]),0),-3,MONTH))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Purcahse in last three months /Customer id or policy id(if same policy)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example of this month next month&lt;/P&gt;
&lt;P&gt;MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))&lt;BR /&gt;next MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],1,MONTH)))&lt;/P&gt;
&lt;P&gt;next month Sales = CALCULATE(SUM(Sales[Sales Amount]),nextmonth('Date'[Date]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Userelationship : &lt;A href="https://www.youtube.com/watch?v=e6Y-l_JtCq4" target="_blank"&gt;https://www.youtube.com/watch?v=e6Y-l_JtCq4&lt;/A&gt;&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;countx( values(Table[Policy ID]), if( not(isbalnk([Rolling 3])),1,blank()))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2021 06:55:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/persistency-check/m-p/1590729#M31950</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-01-12T06:55:31Z</dc:date>
    </item>
  </channel>
</rss>

