G
Guest
I'm trying to create a report to show a monthly total of received
applications per each application type. Now this is what i would like it to
look like:
Application Type JAN FEB MAR APR ... DEC TOTAL
A 20 20 20 20 20 100
B 20 50 10 10 10 100
..
..
..
Now i've created a report where i include the fields of Application Type and
Received Date. In the Detail part of the report I have an invisible textbox
per each month that is unbound where sum part is Over Group and the Control
Source is:
=IIf((([Date Rec]>=DateSerial(Year(Date()),2,1)) And ([Date
Rec]<DateSerial(Year(Date()),3,1))),1,0) * The 2 and 3 change to the month
of reporting.
So i'm using these to 'count' each application per month, but it doesnt seem
to be working correctly as the numbers i get are not what matches the hand
counting.
In the Application Type Report Footer i have a layout such as
[Application type] [jancount] [febcount] [marcount] ... [deccount]
[=jancount+..+deccount]
Any help would be appreciated.
Thanks,
Tim
applications per each application type. Now this is what i would like it to
look like:
Application Type JAN FEB MAR APR ... DEC TOTAL
A 20 20 20 20 20 100
B 20 50 10 10 10 100
..
..
..
Now i've created a report where i include the fields of Application Type and
Received Date. In the Detail part of the report I have an invisible textbox
per each month that is unbound where sum part is Over Group and the Control
Source is:
=IIf((([Date Rec]>=DateSerial(Year(Date()),2,1)) And ([Date
Rec]<DateSerial(Year(Date()),3,1))),1,0) * The 2 and 3 change to the month
of reporting.
So i'm using these to 'count' each application per month, but it doesnt seem
to be working correctly as the numbers i get are not what matches the hand
counting.
In the Application Type Report Footer i have a layout such as
[Application type] [jancount] [febcount] [marcount] ... [deccount]
[=jancount+..+deccount]
Any help would be appreciated.
Thanks,
Tim