S
Sharon
My first query, qryAllExcptRates, calculates lots of
fields to get an Exception Rate.
ExcptRatefield1+field2+field3)/field4)) One account may
have many exception rates.
I want only the MAX exception rate for each account.
Right now, I am creating a table from the first query and
then using the code:
(SELECT Max([Excpt_Rate]) FROM [tblAllExcptRates] AS X
WHERE X.[account]=[tblAllExcptRates].[Account])
How can I skip the "Make Table" step and apply the MAX
code to the first query or, if necessary, to a second
query? (actual code would be helpful because I keep
getting an incorrect syntax note)
fields to get an Exception Rate.
ExcptRatefield1+field2+field3)/field4)) One account may
have many exception rates.
I want only the MAX exception rate for each account.
Right now, I am creating a table from the first query and
then using the code:
(SELECT Max([Excpt_Rate]) FROM [tblAllExcptRates] AS X
WHERE X.[account]=[tblAllExcptRates].[Account])
How can I skip the "Make Table" step and apply the MAX
code to the first query or, if necessary, to a second
query? (actual code would be helpful because I keep
getting an incorrect syntax note)