I have a form where users enter a date range for a query (field techs utilisation). The data in the query is missing some days when they didn't do any jobs that day, but I need know if a tech didn't do any jobs so I can make the data 0.
After thinking about it, here's my method for filling in dates: Create a temporary table that lists all the dates in the date range from the form. Link this table to my query to fill in blank days and mark as 0.
Example:
[forms]![frmzone]![begtransdate] = 01/02/07
[forms]![frmzone]![endtransdate] = 05/02/07
Temporary table:
FillinDates
01/02/07
02/02/07
03/02/07
04/02/07
05/02/07
I think this method will work, but I'm not sure how to go about it. If there's a another method for this I'd be happy to hear about it. If anyone could help that would, great
After thinking about it, here's my method for filling in dates: Create a temporary table that lists all the dates in the date range from the form. Link this table to my query to fill in blank days and mark as 0.
Example:
[forms]![frmzone]![begtransdate] = 01/02/07
[forms]![frmzone]![endtransdate] = 05/02/07
Temporary table:
FillinDates
01/02/07
02/02/07
03/02/07
04/02/07
05/02/07
I think this method will work, but I'm not sure how to go about it. If there's a another method for this I'd be happy to hear about it. If anyone could help that would, great