R
RichardY
I have created a database to track when a unit is borrowed and returned
I setup three tables - Client Table, Unit Table, and Sign-Out Table.
The Sign-Out Table captures the following information:
- Order ID (Primary Key set as an AutoNumber)
- Unit ID (a one-to-many relationship with the Unit Table)
- Client ID (a one-to-many relationship with the Client Table)
- Date Out (the date when the unit was borrowed)
- Return Date (the date when the unit is expected to return)
- Quarter (the quarter the unit was borrowed in, i.e., Q1, Q2, Q3, o
Q4)
Using a Crosstab query and counting the Order ID field, I was able t
generated a report that showed how many times a particular unit wa
borrowed over the period of a fiscal year (i.e., Q1-Q4 for a particula
year). My problem is that I want the report to also show all the unit
that have not been lent out in the fiscal year.
Please help
I setup three tables - Client Table, Unit Table, and Sign-Out Table.
The Sign-Out Table captures the following information:
- Order ID (Primary Key set as an AutoNumber)
- Unit ID (a one-to-many relationship with the Unit Table)
- Client ID (a one-to-many relationship with the Client Table)
- Date Out (the date when the unit was borrowed)
- Return Date (the date when the unit is expected to return)
- Quarter (the quarter the unit was borrowed in, i.e., Q1, Q2, Q3, o
Q4)
Using a Crosstab query and counting the Order ID field, I was able t
generated a report that showed how many times a particular unit wa
borrowed over the period of a fiscal year (i.e., Q1-Q4 for a particula
year). My problem is that I want the report to also show all the unit
that have not been lent out in the fiscal year.
Please help