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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
PBIUWO
Helper III
Helper III

Carrying Over Open Case Amount from Previous Month

Hi, 

 

I have a data source with cases with Open and Closed status with schedule dates, and the date that it closed. 

I am trying to figure out the % of cases closed in the same month as the scheduled date. 

Ex. 10 Cases in May 2020, and 5 are closed. Thats 50% of closure rate. 

 

The case is scheduled, and is supposed to be closed in the same month. 

However, if it is not closed then it will be added to the total of cases to be closed until it is. (Not necessary until next month, and could be longer). 

 

I want to make a table like "Table A" but I think that as months change, closure rate will also change.

How should I make it so it keeps the EOM closure rate. 

 

Details: 

- I can run this report everyday and save it everyday 

- As soon as the case is closed, the closed date will appear

- The carryover month can be longer than just the next month

 

Table A:

 JanuaryFebruaryMarchApril
Previous Scheduled Cases that are still open5551
Scheduled Cases51045
Total Cases101596
Closed Cases51084
Closure Rate (%)50%67%89%67%

 

Sample Data: 

 

Case #StatusSchedued DateClosed Date
1OpenFebruary 2020 
2ClosedFebruary 2020March 2020
3ClosedMarch 2020April 2020
4OpenMarch 2020 
5OpenApril 2020  
6ClosedApril 2020April 2020
7OpenMay 2020 
8ClosedFebruary 2020February 2020
9ClosedMarch 2020March 2020
10ClosedApril 2020May 2020

 

*I'm thinking that the carry over amount can just be calculated by counting rows with the MAX of the previous months date and as long as it's the equal or less than the schedule date with an open status. 

 

 

 

 

6 REPLIES 6
v-lid-msft
Community Support
Community Support

Hi @PBIUWO ,

 

We can create a calculated table as column and then use several measure to meet your requirement:

 

Calculated table:

 

Calendar = ADDCOLUMNS(CALENDARAUTO(),"Month-Year",FORMAT([Date],"MMM YY"),"Sort",YEAR([Date]) * 100 + MONTH([Date]),"Year", YEAR([Date]))

 

Measures:

Previous Scheduled Cases that are still open = 
VAR minDate =
    MIN ( 'Calendar'[Date] )
RETURN
    CALCULATE (
        DISTINCTCOUNT ( 'Table'[Case #] ),
        'Table'[Schedued Date] < minDate,
        'Table'[Closed Date] >= minDate || ISBLANK('Table'[Closed Date])
    )

 

Scheduled Cases = 
CALCULATE(DISTINCTCOUNT('Table'[Case #]),'Table'[Schedued Date] in DISTINCT('Calendar'[Date]))

 

Total Cases = [Previous Scheduled Cases that are still open] + [Scheduled Cases]

 

Closed Cases = CALCULATE(DISTINCTCOUNT('Table'[Case #]),'Table'[Closed Date] in DISTINCT('Calendar'[Date]))

 

Closure Rate (%) = 
DIVIDE([Closed Cases],[Total Cases],0)
// or using following without other measure
// VAR minDate =
//     MIN ( 'Calendar'[Date] )
// RETURN
//     DIVIDE (
//         CALCULATE (
//             DISTINCTCOUNT ( 'Table'[Case #] ),
//             'Table'[Closed Date] IN DISTINCT ( 'Calendar'[Date] )
//         ),
//         CALCULATE (
//             DISTINCTCOUNT ( 'Table'[Case #] ),
//              'Table'[Schedued Date] < minDate
//                , 'Table'[Closed Date] >= minDate  || ISBLANK('Table'[Closed Date])
//         )+ CALCULATE (
//             DISTINCTCOUNT ( 'Table'[Case #] ),
//             'Table'[Schedued Date] IN DISTINCT ( 'Calendar'[Date] )
//         ) ,
//         0
//     )

 

5.jpg

4.jpg


By the way, PBIX file as attached.


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-lid-msft 

 

Hi, thanks for doing a lot on this.

 

The CalendarAuto() helped a lot! 

mahoneypat
Employee
Employee

Since your data are at the monthyear granularity, you should add a Date table that has a column with Month Year in the same format as your data and make a relationship to your ScheduledDate of your Case table.  Then you can write a measure like this:

 

Closure Rate =

VAR currentmonthyear =

SELECTEDVALUE(Date[MonthYear])

VAR scheduledcases =
COUNT ( Case[Case#] )
VAR closedsamemonths =
CALCULATE ( COUNT ( Case[Case#] ), Case[ClosedDate] =currentmonthyear)
RETURN
closedsamemonths / scheduledcases

 

I couldn't tell from your post.  Did you need the other measures too?

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


@mahoneypat 

 

I have everything else, it's just this. 

 

Your answer is calculating only the cases that were closed in the same period.

I need to carry over the open cases across months. 

 

Ex. If there was a case thats open from January, and it's currently May. I need this count to be also included in February, March, April and May.  

So if there was 5 scheduled for each February, March, April and May.  , it would be 6 open cases in each of those months. Then dividing the count of cases completed in the month.  

 

 

amitchandak
Super User
Super User

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.