I presume you want a report that gives a count of all the tickets per state.
Try the report below. It count the number of tickets (with ticket ID) per state.
Select Top 1000000 Count(htblticket.ticketid) As Count,
htblticketstates.statename
From htblticket
Right Join htblticketstates On htblticketstates.ticketstateid =
htblticket.ticketstateid
Group By htblticketstates.statename