March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I can calculate new cliams and closed claims for every month current and past, however need to calculate below calculation to show current open cliams for any month in report...
Current Open cliams = Current Opencliams previousmonth+ new claims - closed cliams
Any help will be great....
Solved! Go to Solution.
Try like
calculate(count(claims[id]),filter(claims,claims[Open Date]<ENDOFMONTH('Date'[Date Filer]) && claims[Close Date]>ENDOFMONTH('Date'[Date Filer]) )
Where date is date table in power bi
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
Situation as an example below...
Open claims EOM December = 573, New cliams created and also Claims Reopened in January = 175, Claims Closed = 150. Now, I need to write a DAX to get Current Open claims = 573+175- 150 = 598 for the month of January.
Any thing which opens before this month-end and not closed before this month-end is open. That is what I was trying to find.
It is the same as what you are saying, just a changed way to implement.
Hi Amit, you are correct I tried and trying to put the number to report, however team want to replicate similar to the screenshot shown in attached...
Using Amit's solution I was able to find current month open claims, I found data all these days they were counting which is manual was wrong, now they dont want to change previous data numbers, however calculate current open claims using dax keeping previous monthly number fixed (till June 2019).
I need to write a dax to calculate Previous month current open claims which should pickup from a table which I will create with previous historic data with End of the month date and number of claims as columns, and from July onwards need to write Amith's code.
Any ideas will help me great ..... thank you all.
If open claim no is correct. This how you have to deal with open and close.
Make sure you have a date dimensions table. Marked as Date Table in Power BI Model.
Join it both open and close date. One or both can be inactive joins. As per your current join.
Refer to the article below on how to use userelation to shift date.
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
Thank you Amit, will check as you suggested.
Try like
calculate(count(claims[id]),filter(claims,claims[Open Date]<ENDOFMONTH('Date'[Date Filer]) && claims[Close Date]>ENDOFMONTH('Date'[Date Filer]) )
Where date is date table in power bi
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
@Vamshi_R Try creating the measure for "Current Open Claims" and use this measure along with Time-Intelligence DAX functions
Proud to be a PBI Community Champion
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
90 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |