I need to run a query/report which contains 3 unrelated ledger tables related to a single contract table. However, if I simply enter these fields, I get what I can only describe as "cascading duplication" where there are no records
IS there any way to do this without running 3 seperate queries??
ContractTable SalesTable | PurchaseTable | SubcontractTable
-------------------------------------------------------------------------------------
Contract1 Sum(Sales) | Sum(Purchases) | Sum(Subcontract)
Contract2 Sum(Sales) | Sum(Purchases) | Sum(Subcontract)
Contract3 Sum(Sales) | Sum(Purchases) | Sum(Subcontract)
etc
Thanks
IS there any way to do this without running 3 seperate queries??
ContractTable SalesTable | PurchaseTable | SubcontractTable
-------------------------------------------------------------------------------------
Contract1 Sum(Sales) | Sum(Purchases) | Sum(Subcontract)
Contract2 Sum(Sales) | Sum(Purchases) | Sum(Subcontract)
Contract3 Sum(Sales) | Sum(Purchases) | Sum(Subcontract)
etc
Thanks