How to count the values in different controls

  • Thread starter Thread starter Billy
  • Start date Start date
B

Billy

Hello all,

I was wanting to count the values in a number of different combo boxes.

The combo boxes have only 3 available values. 1 Yes , 2 No , 3 N/A.

I want to add up the numer of yes values, no values and N/A.

Any ideas?

Regards
Billy
 
Create a table to log the responses from selections in the comboboxes. Then,
When a selection is make, append the selection to the table.

You may then query the table for result totals.

Jim Evans
 
Back
Top