Ok stupid question, I have done this before without the now function and it seems to be kicking my butt,
SELECT IRTSI.EIR_status, Count(IRTSI.EIR_status) AS CountOfAction
FROM IRTSI
GROUP BY IRTSI.EIR_status, Year([irtsi].[incident_Date]), DatePart("q",Date())
HAVING (((Count(IRTSI.EIR_status))>0) AND ((Year([irtsi].[incident_Date]))=Year(Now())) AND ((DatePart("q",Date()))=DatePart("q",Now())))
ORDER BY IRTSI.EIR_status
WITH OWNERACCESS OPTION;
^current code, I need it to produce fiscal quarters instead of jan-dec
my fiscal quarters go from Oct 1, till sept. Any ideas?