Have an access report from an access query. Report gives a count of values in a field (count of result codes entered into CRM from calling activity).
I want to put a calculated field on the report which gives a count where the result codes = x or y or z.
If I were to write it in T-SQL, it'd be
select count(resultcode) from conthist
where resultcode in ('apy', 'nno', 'rfc')
Query already extracts the count of results and displays on report together with a sum of the count. I just want to put a condition on the 'sum of the count'.
Simple, but i seem to be getting nowhere.
I want to put a calculated field on the report which gives a count where the result codes = x or y or z.
If I were to write it in T-SQL, it'd be
select count(resultcode) from conthist
where resultcode in ('apy', 'nno', 'rfc')
Query already extracts the count of results and displays on report together with a sum of the count. I just want to put a condition on the 'sum of the count'.
Simple, but i seem to be getting nowhere.