08-09-2017 11:58 AM
Select Top 1000000 DatePart(yyyy, htblticket.date) As Year,
DatePart(mm, htblticket.date) As Month,
Count(htblticket.ticketid) As TicketsCreated
From htblticket
Where htblticket.spam <> 'True'
Group By DatePart(yyyy, htblticket.date),
DatePart(mm, htblticket.date)
Order By Year Desc,
Month Desc
03-03-2020 08:08 PM
Nick.VDB wrote:
Added in v.6.0.100
The report below gives back a count of the tickets that have been created during each year/month.
The report will only take count tickets that meet all of the following criteria:
- The ticket has not been set to ‘Ignore’
Select Top 1000000 DatePart(yyyy, htblticket.date) As Year,
DatePart(mm, htblticket.date) As Month,
Count(htblticket.ticketid) As TicketsCreated
From htblticket
Where htblticket.spam <> 'True'
Group By DatePart(yyyy, htblticket.date),
DatePart(mm, htblticket.date)
Order By Year Desc,
Month Desc
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now