I guess I should have given you some more information. The two tables are as
follows(only showing fields that are needed for this report):
FsLog (LogID,Date,ReasonId)
FsReasons (ReasonID,Reason)
The two tables are linked through the ReasonID. I list the reasons on the
left and then I get the count from the LogID. I need the count grouped by
month by going across as mentioned in my previous note.
I hope that makes more sense.
Sounds as if you need a Crosstab query as the source for your report. The
SQL for such a query would look like
TRANSFORM Count(L.ReasonID) as TheCount
SELECT R.Reason
, Year(L.Date) as TheYear
, Count(L.ReasonID) as YearCount
FROM FsLog as L INNER JOIN FsReasons as R
ON L.ReasonID = R.ReasonID
GROUP BY R.Reason, Year(L.Date)
PIVOT Format(L.Date,"mmm") In
("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")
You should be able to paste that as the source for your report.
If you need to build the crosstab query using Design View (query grid) you
can post back for instructions on how to do it.

Signature
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
.
>I guess I should have given you some more information. The two tables are
>as
[quoted text clipped - 44 lines]
>> >
>> > Thanks in advance for your help.