FledglingAnalyst
Technical User
I'm trying to create a query to display the number of records received, completed, and on hand for a specified range of dates (via a form). Counting the received and completed records is no problem, its the counting whats incomplete at the end of a given day that's giving me trouble.
Example if I received 5 records on 01/01/2012 and closed 3 records, End of Day Inventory would be 2 records for 01/01/2012. If I received 1 record 01/02/2012 and closed 0, end of day inventory for 01/02/2012 would be 3.
I have fields table.record_id, table.receipt_dt, table.complete_dt.
The output I'm looking for would be Date, Received Count, Completed Count, End of Day Inventory.
Is this possible via a query, or do i need to create a function to make a table that stores this data, then report off the new table?
Using Access 2003.
Example if I received 5 records on 01/01/2012 and closed 3 records, End of Day Inventory would be 2 records for 01/01/2012. If I received 1 record 01/02/2012 and closed 0, end of day inventory for 01/02/2012 would be 3.
I have fields table.record_id, table.receipt_dt, table.complete_dt.
The output I'm looking for would be Date, Received Count, Completed Count, End of Day Inventory.
Is this possible via a query, or do i need to create a function to make a table that stores this data, then report off the new table?
Using Access 2003.