Count option selections

A

aziz

I am building a form that will collect Yes, No, and Sometimes responses using
radio button controls from users to determine program eligibility. Is there a
way that I can display the count for each type selection, Yes, No, or
Sometimes.
 
H

Hilary Stoupa

Hi:

You can add 3 more fields to hold the values of the counts and set the
default values as follows:

1) In the formula editor, select the count function
2) Add your field bound to the option buttons with a filter of the field =
"Sometimes"
(the completed formula will look like
count(../my:group1/my:group2/my:field4[. = "Sometimes"]) depending on your
data source)
3) Repeat in your other boxes for counts of Yes and No
 
Top