Try this --
SELECT [Document Version Information].[Date of Initial Issue], [Document
Holder Information].[Department Abbreviation], Count([Document Holder
Information].[Department Holder Identifier]) AS [Count]
FROM [Document Version Information] INNER JOIN ([Document Distribution
Information] INNER JOIN [Document Holder Information] ON [Document
Distribution Information].[Department Holders Abbreviations] = [Document
Holder Information].[Department Abbreviation]) ON [Document Version
Information].[Version Identifier] = [Document Distribution
Information].[Document Version ID]
WHERE ((([Document Version Information].[Date of Initial Issue]) Between
[Forms]![frmDan'sMonthly]![txtStartDate] And
[Forms]![frmDan'sMonthly]![txtEndDate]))
GROUP BY [Document Version Information].[Date of Initial Issue], [Document
Holder Information].[Department Abbreviation]
ORDER BY [Document Version Information].[Date of Initial Issue], [Document
Holder Information].[Department Abbreviation];

Signature
KARL DEWEY
Build a little - Test a little
> I put those in so that you knew it was just a break that the word wrapping
> created and that I didn't put extra spaces where they shouldn't be (it was
[quoted text clipped - 14 lines]
> >> >> ORDER BY [Document Version Information].[Date of Initial Issue], [Document
> >> >> Holder Information].[Department Abbreviation];
LeslieJ - 10 Oct 2008 15:40 GMT
Hi Karl, I'm sorry I was sort of taken away from this for awhile.
I tried the SQL that you posted, however, it still is separating by day and
not grouping by month.
Does anyone have any insight to this or am I asking of Access something that
can't be done?
>Try this --
>SELECT [Document Version Information].[Date of Initial Issue], [Document
[quoted text clipped - 19 lines]
>> >> >> ORDER BY [Document Version Information].[Date of Initial Issue], [Document
>> >> >> Holder Information].[Department Abbreviation];
جورج اسطفانوس جريس - 10 Oct 2008 21:06 GMT
> Hi Karl, I'm sorry I was sort of taken away from this for awhile.
>
[quoted text clipped - 32 lines]
>>> >> >> [Document
>>> >> >> Holder Information].[Department Abbreviation];
John Smith - 13 Oct 2008 13:38 GMT
An aggregate query has to group by all of the columns that you are selecting.
If you don't want to group by date then remove [Date of Initial Issue] from
the SELECT, GROUP BY and ORDER BY clauses.
If you were reporting on more than one month you could still do it but you
would need to format the date to remove the day, e.g. Format$([Date of Initial
Issue], 'yyyy/mm') rather than removing the field.
HTH
John
##################################
Don't Print - Save trees
> Hi Karl, I'm sorry I was sort of taken away from this for awhile.
>
[quoted text clipped - 27 lines]
>>>>>>> ORDER BY [Document Version Information].[Date of Initial Issue], [Document
>>>>>>> Holder Information].[Department Abbreviation];
LeslieJ - 14 Oct 2008 13:45 GMT
Thank you so much John, I truly appreciate it!
>An aggregate query has to group by all of the columns that you are selecting.
> If you don't want to group by date then remove [Date of Initial Issue] from
[quoted text clipped - 14 lines]
>>>>>>>> ORDER BY [Document Version Information].[Date of Initial Issue], [Document
>>>>>>>> Holder Information].[Department Abbreviation];