Forum Discussion
Adding Up Tickets Per Day
- Anonymous4 years ago
Hi micklowe ,
If the [status] is a column in the 'Ticket' table, you could add the [status] to the filter condition.
For example:
close = CALCULATE(COUNT('Tickets'[id]),FILTER(ALL('Tickets'),'Tickets'[updated_at].[Date]=SELECTEDVALUE('Dates'[date])&&'Tickets'[status] = 5))
If it's something else, please share more information.
Best Regards,
Jay
Hi micklowe ,
If the [status] is a column in the 'Ticket' table, you could add the [status] to the filter condition.
For example:
close = CALCULATE(COUNT('Tickets'[id]),FILTER(ALL('Tickets'),'Tickets'[updated_at].[Date]=SELECTEDVALUE('Dates'[date])&&'Tickets'[status] = 5))
If it's something else, please share more information.
Best Regards,
Jay
Thanks Jay, this almost gives me what I want, the numbers aren't an exact match to what I was expecting but thats down to the data not the query 🙂