Greetings,
I have survey results where 4 of the questions had multiple checkboxes: Basic, Advanced, Specialty. All of the checkboxes are named the same so some of the answers look like this: Basic, Advanced, Specialty
Some of the survey takers checked all of them, some only 1 or 2. I need to split out and count the number of basic, advanced, specialty and I'm stuck. I kind of figured out how to split them out but not how to count them. Any help would be appreciated. thanks!
I have survey results where 4 of the questions had multiple checkboxes: Basic, Advanced, Specialty. All of the checkboxes are named the same so some of the answers look like this: Basic, Advanced, Specialty
Code:
<form>CPT Coding for Staff:
<input type=checkbox name=cpt value=Basic> Basic
<input type=checkbox name=cpt value=Advanced> Advanced
<input type=checkbox name=cpt value=Specialty> Specialty
Some of the survey takers checked all of them, some only 1 or 2. I need to split out and count the number of basic, advanced, specialty and I'm stuck. I kind of figured out how to split them out but not how to count them. Any help would be appreciated. thanks!