Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Team,
Im preparing the Claims Forecasting for 2020. I have 4 Tables(Sales, Claims, Product & Calendar).
In Sales Table (Contract Number, Contract Start Date, Contract End Date)
In Claims Table (Claims Date, Status, Contract Number)
In Product Table (Product Name, Model, Contract Number, Make)
Program has started from 2018 and claim as well.
I have prepared Measure for calculating Active Contracts on Monthly Basis,
1. New Adds = CALCULATE(COUNTROWS('Sales'))
2. Policy End = CALCULATE(COUNTROWS('Sales'), USERELATIONSHIP(Sales[Contract_End_Date__c],'Calendar'[Date]))
3. Policy Remaining Count = ABS([New Adds]-[Policy End])
@Anonymous : Im trying to forecast on Mothly basis of 2020.
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.
Hi,
I am using this measure now
1.Claim Frequency LY = Calculate([Claim Frequency], SAMEPERIODLASTYEAR(Calendar[Date])
2. Forecast = [Total Active Policies]*[Claim Frequency LY]
In Visual im filtering only Year 2020 and Month wise breakup.