G
Guest
I am trying to create a form driven by a Union query where the users can edit
the results.
SELECT KitName_1 AS KIT, KitAbbrv_1 as Abbrv,KitNotes_1 as KitNotes, Name,
SchName, District, Grade, ShipDate_1 AS ShipDate, ReturnDate_1 AS ReturnDate
FROM qryReturnSchedule
WHERE KitName_1 <> ""
UNION
SELECT KitName_2 AS KIT, KitAbbrv_2 as Abbrv, KitNotes_2 as KitNotes,
Name, SchName, District, Grade, ShipDate_2 AS ShipDate, ReturnDate_2 AS
ReturnDate
FROM qryReturnSchedule
WHERE KitName_2 <> ""
UNION SELECT KitName_3 AS KIT, KitAbbrv_3 as Abbrv, KitNotes_3 as
KitNotes, Name, SchName, District, Grade, ShipDate_3 AS ShipDate,
ReturnDate_3 AS ReturnDate
FROM qryReturnSchedule
WHERE KitName_3 <> ""
ORDER BY District, KIT;
Is there a way to do this?
the results.
SELECT KitName_1 AS KIT, KitAbbrv_1 as Abbrv,KitNotes_1 as KitNotes, Name,
SchName, District, Grade, ShipDate_1 AS ShipDate, ReturnDate_1 AS ReturnDate
FROM qryReturnSchedule
WHERE KitName_1 <> ""
UNION
SELECT KitName_2 AS KIT, KitAbbrv_2 as Abbrv, KitNotes_2 as KitNotes,
Name, SchName, District, Grade, ShipDate_2 AS ShipDate, ReturnDate_2 AS
ReturnDate
FROM qryReturnSchedule
WHERE KitName_2 <> ""
UNION SELECT KitName_3 AS KIT, KitAbbrv_3 as Abbrv, KitNotes_3 as
KitNotes, Name, SchName, District, Grade, ShipDate_3 AS ShipDate,
ReturnDate_3 AS ReturnDate
FROM qryReturnSchedule
WHERE KitName_3 <> ""
ORDER BY District, KIT;
Is there a way to do this?