Question : access reprot / query

I have a drop down list in a table with 30 selections in it. I also queried the table for dates and stuff. Then I built a report based on the query. The Field name is " Call Type " but one of the selections in the field " Call Type " is " Medical ". I want to count in seperate fields the 30 or so selections like " Medical ". I used =Count([Medical])   and    =Sum([Medical]) but no good. Please help

Answer : access reprot / query

try
=sum(iif([Call Type]="Medical",1,0))
Random Solutions  
 
programming4us programming4us