H
Haggr1 via AccessMonster.com
I have 3 append queries I would like to run at the same time from one
"command button" without warning messages. But before they run, I need to
delete all records in the
I am appending. Below are the 3 queries.
Thanks
INSERT INTO ImportDateDue ( Job, Due )
SELECT [Date Due].[Job Number], [Date Due].[Date Due]
FROM [Date Due]
WHERE ((([Date Due].[Date Due])>Now()-1));
INSERT INTO ImportDateDue ( Job, Due )
SELECT Import.Job, Import.Due
FROM Import
WHERE (((Import.Due)>Now()-"1"));
INSERT INTO ImportDateDue ( Job, Item, Ordered, Age )
SELECT Import.Job, Import.Item, Import.Ordered, Import.Age
FROM Import
WHERE (((Import.Ordered)<Date()-3));
"command button" without warning messages. But before they run, I need to
delete all records in the
Thanks
INSERT INTO ImportDateDue ( Job, Due )
SELECT [Date Due].[Job Number], [Date Due].[Date Due]
FROM [Date Due]
WHERE ((([Date Due].[Date Due])>Now()-1));
INSERT INTO ImportDateDue ( Job, Due )
SELECT Import.Job, Import.Due
FROM Import
WHERE (((Import.Due)>Now()-"1"));
INSERT INTO ImportDateDue ( Job, Item, Ordered, Age )
SELECT Import.Job, Import.Item, Import.Ordered, Import.Age
FROM Import
WHERE (((Import.Ordered)<Date()-3));