<?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: Claim Frequency &amp;amp; Claim Forecasting in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956713#M11005</link>
    <description>Yeah, I know how you calculate a forecast based on the PY period. But I have not got an answer to my question: Why can't you just sum all the forecasts for all the months of 2020? If you know the percentage for each month of 2019, then it's easy to do this:&lt;BR /&gt;&lt;BR /&gt;sum over all i = 1,2,...,12 (all months of 2019):&lt;BR /&gt;claim_freq(i) * active_policies(i+1year)&lt;BR /&gt;&lt;BR /&gt;Why can't you use it?&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
    <pubDate>Tue, 03 Mar 2020 09:53:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-03-03T09:53:02Z</dc:date>
    <item>
      <title>Claim Frequency &amp; Claim Forecasting</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956386#M10975</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im preparing the Claims Forecasting for 2020. I have 4 Tables(Sales, Claims, Product &amp;amp; Calendar).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Sales Table (Contract Number, Contract Start Date, Contract End Date)&lt;BR /&gt;In Claims Table (Claims Date, Status, Contract Number)&lt;/P&gt;&lt;P&gt;In Product Table (Product Name, Model, Contract Number, Make)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Program has started from 2018 and claim as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have prepared Measure for calculating Active Contracts on Monthly Basis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. New Adds =&amp;nbsp;&lt;SPAN&gt;CALCULATE(COUNTROWS('Sales'))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Policy End = CALCULATE(COUNTROWS('Sales'), USERELATIONSHIP(Sales[Contract_End_Date__c],'Calendar'[Date]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Policy Remaining Count = ABS([New Adds]-[Policy End])&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;4. Active Policies = CALCULATE(SUMX(SUMMARIZE('Calendar','Calendar'[Month], "ABCD", ABS([Policy Remaining Count])),[ABCD]), DATESBETWEEN('Calendar'[Date],MINX(ALL('Calendar'),'Calendar'[Date]),MAX('Calendar'[Date])))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;For Claims,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;1.Total Claims = CALCULATE(COUNTROWS(Claims), FILTER(Claims, Claims[Status] &amp;lt;&amp;gt; "Closed - Rejected"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Claim Frequency = DIVIDE([Total Claims],[Active Policies])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Claim Frequency gives me exact Frequency on monthly basis.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Now i need to forecast claims count for 2020 taking base of Claim Frequency of 2019(Month on Month).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Basically, I need to calculate Active Policies of Jan-20 * Claim Frequency of Jan-19, Active Policies of Feb-20 * Claim Frequency of Feb-19, Like this till Dec-20.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I need help in Measures for calculating Claim Frequency of Only 2019 from Active policies of 2019, then use that Measure to Forecast 2020 Claims Count.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I created this Measure,&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Claims Frequency 2019 = DIVIDE(MAXX(FILTER('Calendar', 'Calendar'[Year] = 2019),[Total Claims]),&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;MAXX(FILTER('Calendar', 'Calendar'[Year] = 2019), [Active Policies]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;But it doesnt give proper frequency like "Claim Frequency" Measures. can anyone help me on this and how to forecast 2020 Claims by taking 2019 as base.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Mar 2020 06:37:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956386#M10975</guid>
      <dc:creator>Asfaa5</dc:creator>
      <dc:date>2020-03-03T06:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Claim Frequency &amp; Claim Forecasting</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956613#M11002</link>
      <description>Hi. As much as I understand, your most granular level on which you calculate forecasts is month. If you want to have an estimate for a year, isn't it just enough to add up all the forecasts for all the year's months?&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Tue, 03 Mar 2020 09:03:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956613#M11002</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T09:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Claim Frequency &amp; Claim Forecasting</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956633#M11003</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;: Im trying to forecast on Mothly basis of 2020.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex : If Claim Frequency of Jan'19 is 10% and Active Police of Jan'20 is 10000, then Forecast of Jan'20 should be 1000.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 09:13:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956633#M11003</guid>
      <dc:creator>Asfaa5</dc:creator>
      <dc:date>2020-03-03T09:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Claim Frequency &amp; Claim Forecasting</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956713#M11005</link>
      <description>Yeah, I know how you calculate a forecast based on the PY period. But I have not got an answer to my question: Why can't you just sum all the forecasts for all the months of 2020? If you know the percentage for each month of 2019, then it's easy to do this:&lt;BR /&gt;&lt;BR /&gt;sum over all i = 1,2,...,12 (all months of 2019):&lt;BR /&gt;claim_freq(i) * active_policies(i+1year)&lt;BR /&gt;&lt;BR /&gt;Why can't you use it?&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Tue, 03 Mar 2020 09:53:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956713#M11005</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T09:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Claim Frequency &amp; Claim Forecasting</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956833#M11013</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using this measure now&lt;/P&gt;&lt;P&gt;1.Claim Frequency LY = Calculate([Claim Frequency], SAMEPERIODLASTYEAR(Calendar[Date])&lt;/P&gt;&lt;P&gt;2. Forecast = [Total Active Policies]*[Claim Frequency LY]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Visual im filtering only Year 2020 and Month wise breakup.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 11:36:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Claim-Frequency-amp-Claim-Forecasting/m-p/956833#M11013</guid>
      <dc:creator>Asfaa5</dc:creator>
      <dc:date>2020-03-03T11:36:55Z</dc:date>
    </item>
  </channel>
</rss>

