M
Mercy
Hi Everybody ^_^
I have a question.
I have a Form "OrderForm" which has a subform based on
the "Summary." "Summary" is:
SELECT [ManufacturerName], Details.Vendor, [OrderNum],
[Product], Details.ProductId, [Unit], Sum
(Details.Quantity) AS totalQuantity, [Cost]
FROM Details
GROUP BY [ManufacturerName], Details.Vendor, [OrderNum],
[Product], Details.ProductId, [Unit], [Cost];
The thing is ... I need to add 3 more pieces of
information to each record in the subform. These 3
pieces of info are: "ActualQtyOrdered", "ActualUnit",
and "TotalCost"
To put I simply I want a table that has all the info
of "Summary" plus 3 more fields. Is there any way to do
this?
Thanks for any input!
Mercy
I have a question.
I have a Form "OrderForm" which has a subform based on
the "Summary." "Summary" is:
SELECT [ManufacturerName], Details.Vendor, [OrderNum],
[Product], Details.ProductId, [Unit], Sum
(Details.Quantity) AS totalQuantity, [Cost]
FROM Details
GROUP BY [ManufacturerName], Details.Vendor, [OrderNum],
[Product], Details.ProductId, [Unit], [Cost];
The thing is ... I need to add 3 more pieces of
information to each record in the subform. These 3
pieces of info are: "ActualQtyOrdered", "ActualUnit",
and "TotalCost"
To put I simply I want a table that has all the info
of "Summary" plus 3 more fields. Is there any way to do
this?
Thanks for any input!
Mercy