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 have a weird cumulative measure to create and I don’t know how to tackle it.
I guess people working with helpdesk data might have similar use cases because I’m basically trying to know how many support requests were open at any given time.
My data gives me one record per Request:
How to determine open requests on date 😧
For currently open requests ([status]=”open”)
For currently closed requests ([status]=”closed”)
So I am basically try to do a running count of [RequestID] where
([status]=”open AND [open_date]<= D)
OR
([status]=”closed” AND [status_date]> D)
NB: I have a time dimension ‘Dates’ in the project which is linked to the [open_date] dimension
Something like:
CumulativeRequestCount = CALCULATE ( COUNT ('Requests'[RequestID] ), FILTER (All ('Dates'[Date]), OR ( AND ('Requests'[status]="open" , 'Requests'[open_date]<= 'Dates'[Date], AND ('Requests'[status]="closed" , 'Requests'[status_date]> 'Dates'[Date] ))
Or (depending which style you like):
CumulativeRequestCount = CALCULATE ( COUNT ('Requests'[RequestID] ), FILTER ('Dates'[Date]), ('Requests'[status]="open" && 'Requests'[open_date]<='Dates'[Date]) || ('Requests'[status]="closed" && 'Requests'[status_date]>'Dates'[Date]) ))
But obviously this does not work.
What I am struggling with are the nested filteing conditions and the handling of the time dimension
Solved! Go to Solution.
You are right, @danrmcallister I confused you when I put close_date in the code when I should have put status_date. Because as I mentioned the “end_date” I have is not a close date, it’s the date associated with the last known status, which can be “open”.
[Well, in reality there are several intermediary statuses but this is a simplified version of the data model.]
Which is the reason why I can’t strictly rely on the dates.
Because a given date can be past the status date but the request still show a open status.
For clarity I created a sample project with a basic dataset that illustrates what the source data could look like and what the expected result would be.
I followed your lead and got it to work with the following formula
Cumulative Open Requests Count = CALCULATE( COUNT('status-dataset'[RequestID]); FILTER( 'status-dataset'; ('status-dataset'[open_date] <= MAX('Dates'[date])) && (('status-dataset'[status]="open") || ('status-dataset'[status_date] > MAX('Dates'[date]) && 'status-dataset'[status]="closed")) ) )
Thank you so much @danrmcallister for putting me on the right track
@osinquinvdm How about adding a calculated column to your date table like this?
CumulativeRequestCount = Calculate( Countrows(Table1), Filter(Requests, Requests[open_date] <= LASTDATE(DateTable[Date]) && Requests[close_date] >= FirstDate(DateTable[Date])))
Why are you trying to add the evaluation of if the case is still open or not based on the status? Shouldn't that be determined via the open/close dates? If you have a screenshot of a reason to include that it'd be helpful. The only thing I can think of is if you wanted to have a count for all currently open cases.
Dan
You are right, @danrmcallister I confused you when I put close_date in the code when I should have put status_date. Because as I mentioned the “end_date” I have is not a close date, it’s the date associated with the last known status, which can be “open”.
[Well, in reality there are several intermediary statuses but this is a simplified version of the data model.]
Which is the reason why I can’t strictly rely on the dates.
Because a given date can be past the status date but the request still show a open status.
For clarity I created a sample project with a basic dataset that illustrates what the source data could look like and what the expected result would be.
I followed your lead and got it to work with the following formula
Cumulative Open Requests Count = CALCULATE( COUNT('status-dataset'[RequestID]); FILTER( 'status-dataset'; ('status-dataset'[open_date] <= MAX('Dates'[date])) && (('status-dataset'[status]="open") || ('status-dataset'[status_date] > MAX('Dates'[date]) && 'status-dataset'[status]="closed")) ) )
Thank you so much @danrmcallister for putting me on the right track
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 |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |