Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a table with data about particular tickets. The columns are:
TicketId | CreatedDate | ClosedDate | CurrentStatus |
I'm trying to work out how I can get a total per month of how many open tickets there were at month end.
For example, in the month of February there might have been 300 tickets that were opened, and there were still 250 left over from the month before, then 100 were closed over the course of February, the number for the month of February should be the nett open tickets at the end of the month, i.e. 300 + 250 - 100 = 450 tickets.
Then the 450 gets carried to March, and n tickets were opened in March, minus x tickets that were closed, etc.
Either total by month or total by date is fine. Thanks.
You need to have a calendar dimension. You need to join it both open date and close date. Where join with close date will be inactive.
Then try something like this
Active employee = Var _start_date=(minx('Date','Date'[Date])) Var _end_date=(maxx('Date','Date'[Date])) return CALCULATE (count(ticket),open_date <= _end_date) -CALCULATE (count(ticket),close_date <= _end_date,userelation(date[date],ticket[close_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.
Hi,
Share some data and show the expected result.
Hi @NickMorrell
I have created a sample pbix based on your requirement. See Download Link: Sample - Tickets.pbix
I used the Power query to create a function to generate the running balance. Please refer to the Edit Queries>Advance Editor for the code.
PJ
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
85 | |
66 | |
51 | |
45 |
User | Count |
---|---|
217 | |
89 | |
82 | |
66 | |
57 |