I have 4 tables:
tblSites:SiteID(PK),ForceName,SiteName
tblViper:VRN(PK),SiteID(FK)
Requests:RequestID(PK),VRN(FK),RequestDate
Compilations:CompilationID(PK),RequestID(FK),CompilationName
Each are linked to the other using the appropriate keys.
Thanks to SwampBoogie I am able to the total number of Requests & The total number of Compilations.
What I am trying to do now is create the monthly report.
It should show for each site, for each month, the total number of Compilations and Requests. It seems so easy and I can do it if we wanted to have 2 seperate reports, but te powers that be want everything on 1 sheet "Like Excel".
You know the sort of thing I mean:
Jan Feb Mar Apr May...
| C R | C R | C R | C R | C R |
Bradford 5 2 9 5 5 1 9 9 7 3
....
I just can't get my head round it.
Please help!!
Ben
----------------------------------------
Ben O'Hara
----------------------------------------
tblSites:SiteID(PK),ForceName,SiteName
tblViper:VRN(PK),SiteID(FK)
Requests:RequestID(PK),VRN(FK),RequestDate
Compilations:CompilationID(PK),RequestID(FK),CompilationName
Each are linked to the other using the appropriate keys.
Thanks to SwampBoogie I am able to the total number of Requests & The total number of Compilations.
What I am trying to do now is create the monthly report.
It should show for each site, for each month, the total number of Compilations and Requests. It seems so easy and I can do it if we wanted to have 2 seperate reports, but te powers that be want everything on 1 sheet "Like Excel".
You know the sort of thing I mean:
Jan Feb Mar Apr May...
| C R | C R | C R | C R | C R |
Bradford 5 2 9 5 5 1 9 9 7 3
....
I just can't get my head round it.
Please help!!
Ben
----------------------------------------
Ben O'Hara
----------------------------------------