So, I have a report with a field that looks like this:
(They're abbriviations for antibiotics)
I would like my Report Footer to say:
There is no guaruntee that there will be EM. Likewise, there is no guaruntee that there won't be EM. It can be any combination of 10 different antibiotics. I have a query, qryAMRCount, that has the SQL:
and that gives me what I need. Now how do put that information (from a different query) onto my report?
-------------------------
Just call me Captain Awesome.
Code:
AM, TS, TC
TS, TC
EM
AM, CL, CM
CI, EM, GM
TS, TC
EM
TS, TC
I would like my Report Footer to say:
Code:
AM, TS, TC 1
TS, TC 2
EM 2
AM, CL, CM 1
CI, EM, GM 1
There is no guaruntee that there will be EM. Likewise, there is no guaruntee that there won't be EM. It can be any combination of 10 different antibiotics. I have a query, qryAMRCount, that has the SQL:
Code:
SELECT AMRProfile, Count(AMRProfile) As Counter
FROM CampyTbl_Grid_Results
GROUP BY AMRProfile
-------------------------
Just call me Captain Awesome.