Hello Everyone,
I'm trying to append a weekly set of records to a table. The current append query adds one record, the StartDate, which works outstanding (Many thanks to DavidR for the help on that).
Here is the SQL for that:
INSERT INTO tblWeeklyInput ( EmployeeID, StartDate )
SELECT tblEmployee.EmployeeID, [Forms]![frmsetup]![StartDate]
FROM tblEmployee LEFT JOIN tblWeeklyInput ON tblEmployee.EmployeeID = tblWeeklyInput.EmployeeID;
I need to have ALL the dates in the work week, not just the start date. How do I set this query up to add 5 days in a row to the same field?
As always Many Thanks!
[This message has been edited by RickR (edited 05-10-2002).]
[This message has been edited by RickR (edited 05-10-2002).]
I'm trying to append a weekly set of records to a table. The current append query adds one record, the StartDate, which works outstanding (Many thanks to DavidR for the help on that).
Here is the SQL for that:
INSERT INTO tblWeeklyInput ( EmployeeID, StartDate )
SELECT tblEmployee.EmployeeID, [Forms]![frmsetup]![StartDate]
FROM tblEmployee LEFT JOIN tblWeeklyInput ON tblEmployee.EmployeeID = tblWeeklyInput.EmployeeID;
I need to have ALL the dates in the work week, not just the start date. How do I set this query up to add 5 days in a row to the same field?
As always Many Thanks!
[This message has been edited by RickR (edited 05-10-2002).]
[This message has been edited by RickR (edited 05-10-2002).]