OKay, driving myself a bit nuts with this.
I am trying to get a total count of rows from a query on my tickets, Each ticket has a date and an ID number
SELECT tbl_ticket.ticket, tbl_ticket.entrydate, Count(tbl_ticket.[entrydate]) AS [Row Count]
FROM tbl_ticket
GROUP BY tbl_ticket.ticket...