micklowe
4 years agoHelper I
Adding Up Tickets Per Day
Hi All, I have a CSV datasource of support tickets, I want to create measures to add up opened and closed tickets per day but struggling a bit. I have tried just using counts on the field but all...
- 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