Too Many Queries

K

knowshowrosegrows

OK this is a series of 4 queries that are all tied together to get me the
final query. Can someone help me understand how to make them into one or
maybe two queries?

“qryMaxEffDateâ€

SELECT tblDPASCap.DPAS, Max(tblDPASCap.EFFECTIVE) AS MaxOfEFFECTIVE
FROM tblDPASCap
GROUP BY tblDPASCap.DPAS;

“qryGetCurrentCapOneâ€

SELECT tblProgram_Details.Program_ID, tblProgram_Details.DPAS_Code,
qryMaxEffDate.MaxOfEFFECTIVE
FROM tblProgram_Details LEFT JOIN qryMaxEffDate ON
tblProgram_Details.DPAS_Code = qryMaxEffDate.DPAS;

“qryGetCurrentCapTwoâ€

SELECT qryGetCurrentCapOne.DPAS_Code, qryGetCurrentCapOne.MaxOfEFFECTIVE,
tblDPASCap.CAPACITY, qryGetCurrentCapOne.Program_ID
FROM qryGetCurrentCapOne LEFT JOIN tblDPASCap ON
(qryGetCurrentCapOne.DPAS_Code = tblDPASCap.DPAS) AND
(qryGetCurrentCapOne.MaxOfEFFECTIVE = tblDPASCap.EFFECTIVE);

“qryGetCurrentCapThreeâ€

SELECT Sum(qryGetCurrentCapTwo.CAPACITY) AS DPASTotalCap,
tblProgram.Program_ID
FROM tblProgram LEFT JOIN qryGetCurrentCapTwo ON tblProgram.Program_ID =
qryGetCurrentCapTwo.Program_ID
GROUP BY tblProgram.Program_ID;

Ultimately, I am trying to the get the Maximum EFFECTIVE Date for a bunch of
DPAS_Codes (qryMaxEffDate) and the associated Program_ID for each DPAS_Code
(qryGetCurrentCapOne). Then I want the Sum of the Capacities that were in
effect on those Maximum Effective Dates for all the DPAS_Codes that relate to
each Program_ID (qryGetCurrentCapTwo) and (qryGetCurrentCapThree).
 
J

Jeff Boyce

Why?

I appreciate "elegance" as much as the next person, but why do you care
whether it takes a single query or a chain of 10 queries to get the answer
you need?


Regards

Jeff Boyce
Microsoft Office/Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Need query help 14
Can't write to query 4
Riddle me this you wizards 2
Sales & warehouse store or Stock Store 1
A query based on another queries 1
Nested Queries 3
Joining Queries 2
COMBINING QUERIES INTO 1 3

Top