... for not being able to use user input parameters in a summing query?
I have this:
And would love to be able to have the user input the date range.
I tried using a straight select query to "feed" the summing query, but that didn't work either.
Please Help!
I have this:
Code:
SELECT MPC00.TS_NUMBER, MPC00.CLAIM_RCVD, MPC00.RINV_AM_PD, MPC00.MODEL_NAME, Sum(DSum("RINV_AM_PD","COSTS")) AS TOTAL
FROM MPC00
WHERE (((MPC00.CLAIM_RCVD) Between #8/1/2006# And #8/30/2006#))
GROUP BY MPC00.TS_NUMBER, MPC00.CLAIM_RCVD, MPC00.RINV_AM_PD, MPC00.MODEL_NAME
ORDER BY MPC00.TS_NUMBER DESC;
I tried using a straight select query to "feed" the summing query, but that didn't work either.
Please Help!