Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Vamshi_R
Frequent Visitor

Need Help!! Calculating Current open claims for every month.

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....

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

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.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

8 REPLIES 8
Vamshi_R
Frequent Visitor

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. 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

 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... Capture1.PNG

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.

 

https://community.powerbi.com/t5/Desktop/DATE-RANGE-SLICERS-TO-COMPARE-NETSALES-OF-A-DATE-RANGE/td-p...

 

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.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Thank you Amit, will check as you suggested.

amitchandak
Super User
Super User

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.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
PattemManohar
Community Champion
Community Champion

@Vamshi_R Try creating the measure for "Current Open Claims" and use this measure along with Time-Intelligence DAX functions





Did I answer your question? Mark my post as a solution!

Proud to be a PBI Community Champion




Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors