A
Aldred@office
Hi all,
Now I have 2 queries, I was asked to display them in the same view in a form
as Datasheet view.
Query 1:
SELECT PartNumID, Manu, POOutNum, PartNum, Quantity, DueDate,
tPOItems.DeliveryDate, SpecialInst
FROM tManu, tPOin, tPOItems, tPOOut
WHERE POinNum=Forms!fReport!POinNumDelivered And tPOin.ID=tPOItems.POinID
And tPOOut.ID=tPOItems.POOutID And tPOOut.ManuID=tManu.ID;
Query 2:
SELECT Sum(tDelivered.DQuantity) AS Delivered
FROM tPOitems, tPOin, tDelivered
WHERE POinNum=Forms!fReport!POinNumDelivered And tPOin.ID=tPOitems.POinID
And tPOitems.ID=tDelivered.POItemsID and tDelivered.PartNumID= "PartNumID
Which Is Equal To The One From Query1"
Is this possible? If not, is there any workaround?
Thanks.
Now I have 2 queries, I was asked to display them in the same view in a form
as Datasheet view.
Query 1:
SELECT PartNumID, Manu, POOutNum, PartNum, Quantity, DueDate,
tPOItems.DeliveryDate, SpecialInst
FROM tManu, tPOin, tPOItems, tPOOut
WHERE POinNum=Forms!fReport!POinNumDelivered And tPOin.ID=tPOItems.POinID
And tPOOut.ID=tPOItems.POOutID And tPOOut.ManuID=tManu.ID;
Query 2:
SELECT Sum(tDelivered.DQuantity) AS Delivered
FROM tPOitems, tPOin, tDelivered
WHERE POinNum=Forms!fReport!POinNumDelivered And tPOin.ID=tPOitems.POinID
And tPOitems.ID=tDelivered.POItemsID and tDelivered.PartNumID= "PartNumID
Which Is Equal To The One From Query1"
Is this possible? If not, is there any workaround?
Thanks.