G
Guest
I have a query that returns the sum of reopened projects by month. Some months don't have reopened projects and are not listed in the query. I am importing this data into excel and would like to have all months accounted for so I don't have to manually add information. In researching, I am assuming the solution will be be to join a table with months to the query (It doesn't appear the Nz or DCount functions will work). I have not been able to join this successfully. Can walk me through this or offer another solution
code for reopened query -
SELECT QRY_WAV_MTH_FF_TELEPHONE.New_Reopen_Date, Sum(QRY_WAV_MTH_FF_TELEPHONE.[Count_Re-Open]) AS [SumOfCount_Re-Open
FROM QRY_WAV_MTH_FF_TELEPHON
GROUP BY QRY_WAV_MTH_FF_TELEPHONE.New_Reopen_Dat
HAVING (((QRY_WAV_MTH_FF_TELEPHONE.New_Reopen_Date)<>""))
code for reopened query -
SELECT QRY_WAV_MTH_FF_TELEPHONE.New_Reopen_Date, Sum(QRY_WAV_MTH_FF_TELEPHONE.[Count_Re-Open]) AS [SumOfCount_Re-Open
FROM QRY_WAV_MTH_FF_TELEPHON
GROUP BY QRY_WAV_MTH_FF_TELEPHONE.New_Reopen_Dat
HAVING (((QRY_WAV_MTH_FF_TELEPHONE.New_Reopen_Date)<>""))