Hi All,
I have a drop down list with the values:
Contacted, Not Interested
Qualified, Opted Out
Screened, Waiting on Paperwork
Enrolled
I would like to run a query to generate a report that totals the number for each value ie how many people I have "Contacted, not interested," how many "qualified, opted out" etc.
For other drop down menus with just "yes" or "no" options (for example "contacted - yes or no"), I have used
=Count(IIf([Contacted]= yes, 1, null)) to total my responses. I don't understand how to do something similar for multiple values. Any help would be much appreciated!
I have a drop down list with the values:
Contacted, Not Interested
Qualified, Opted Out
Screened, Waiting on Paperwork
Enrolled
I would like to run a query to generate a report that totals the number for each value ie how many people I have "Contacted, not interested," how many "qualified, opted out" etc.
For other drop down menus with just "yes" or "no" options (for example "contacted - yes or no"), I have used
=Count(IIf([Contacted]= yes, 1, null)) to total my responses. I don't understand how to do something similar for multiple values. Any help would be much appreciated!
Comment