cannot get query results right
I have a main query with my transaction data. Transaction are separated into 2 types. I am trying to get a report that lists, by type, every month and the totals of the transaction data per Director, for that month. So my query ought to look like this:
Type Month Director unitSum
-----------------------------------------
OA 1 1100 555
OA 1 1200 25
.
.
OA 12 1500 2455
.
.
BE 1 1100 990
.
.
I’ve been having great difficulty getting this using outer joins to specify my criteria. In total I ought to have 120 rows (5 directors * 12 months * 2 types) but I cannot get these rows without the data repeating per each month.
I have a main query with my transaction data. Transaction are separated into 2 types. I am trying to get a report that lists, by type, every month and the totals of the transaction data per Director, for that month. So my query ought to look like this:
Type Month Director unitSum
-----------------------------------------
OA 1 1100 555
OA 1 1200 25
.
.
OA 12 1500 2455
.
.
BE 1 1100 990
.
.
I’ve been having great difficulty getting this using outer joins to specify my criteria. In total I ought to have 120 rows (5 directors * 12 months * 2 types) but I cannot get these rows without the data repeating per each month.