G
Guest
I have 2 reports (code included) I can get them both to work seperately but I
need a report that will combine the info. and then return a difference in a
calculated unbound column any suggestions. I don't know how to put 2 reports
together. When I try it should return 189 records 1 for each category with
the budget amt the cost (amt used even if it is 0 in either the budget or
cost) PLEASE HELP I have been working on this for a week!
SELECT [EST_S-84a].Category, [EST_S-84a].LEBAEst_Cost,
qryCategoryLookup.CategoryName, qryCategoryLookup.MainCatID,
qryCategoryLookup.MainCatName
FROM qryCategoryLookup INNER JOIN [EST_S-84a] ON
qryCategoryLookup.CategoryID = [EST_S-84a].Category
ORDER BY [EST_S-84a].Category;
----------
SELECT qryPurchaseOrderRpt.ProjectID, qryPurchaseOrderRpt.CategoryID,
Sum(qryPurchaseOrderRpt.ExtendedPrice) AS SumOfExtendedPrice
FROM qryPurchaseOrderRpt
GROUP BY qryPurchaseOrderRpt.ProjectID, qryPurchaseOrderRpt.CategoryID;
need a report that will combine the info. and then return a difference in a
calculated unbound column any suggestions. I don't know how to put 2 reports
together. When I try it should return 189 records 1 for each category with
the budget amt the cost (amt used even if it is 0 in either the budget or
cost) PLEASE HELP I have been working on this for a week!
SELECT [EST_S-84a].Category, [EST_S-84a].LEBAEst_Cost,
qryCategoryLookup.CategoryName, qryCategoryLookup.MainCatID,
qryCategoryLookup.MainCatName
FROM qryCategoryLookup INNER JOIN [EST_S-84a] ON
qryCategoryLookup.CategoryID = [EST_S-84a].Category
ORDER BY [EST_S-84a].Category;
----------
SELECT qryPurchaseOrderRpt.ProjectID, qryPurchaseOrderRpt.CategoryID,
Sum(qryPurchaseOrderRpt.ExtendedPrice) AS SumOfExtendedPrice
FROM qryPurchaseOrderRpt
GROUP BY qryPurchaseOrderRpt.ProjectID, qryPurchaseOrderRpt.CategoryID;