I would like to modify the SQL below to sort the count by QTR and user. Not sure how to do this… Any thoughts? Thanks…
SELECT Count(pndata_tbl.EIRID) AS CountOfEIRID, pndata_tbl.User, pndata_tbl.ClosedDate
FROM pndata_tbl
GROUP BY pndata_tbl.User, pndata_tbl.ClosedDate;