I am doing this survey database. The respondent’s survey form isweb-based. The survey is a series of 105 questions with only 2
choices. A respondent has to select which of the 2 choices is
important to him. Like this:
-
a. Good fringe benefits
b. Pleasant work environment
-
a. Salary/wages
b. Recognition of others
I’ve rendered this as a radio button so that the respondent must
choose only one of the 2 factors.
The completed form will then be stored in a Notes database. So far, I
have no problem with the submission of the form, because its only
straightforward.
Each question corresponds to a factor like in #1 choosing “a”
corresponds to factor S1 and choosing “b” corresponds to factor B2, in
#2 choice “a” is S2 and choice “b” is P1.
In each radio button choice, I placed an alias corresponding to the
factor code. Like, Good fringe benefits | S1
Pleasant work environment | B2
So for #1 the contents of the field would either be S1 or B2.
So far so good?
Is what I am doing right so far? ![]()
Here’s my dilemma. How do i count the results?
I created a table with fields corresponding to the factors. All were
computed number fields with compute after validation checked. Then in
the Value object I placed an @formula:
@IF(One=“S1”;S1_c = S1_c + 1;B2_c = B2_c + 1);
@IF(Two=“S2”;S2_c = S2_c + 1;P2_c = P2_c + 1);
I placed these formulas in the fields of the factors affected.
Apparently, this way didn’t work. I’d like to solicit your suggestions
on how to approach this.
I downloaded a survey database from the Sandbox, but it was only a
straightforward counting and the counting was done in LotusScript.
Unfortunately, my LotusScript skills is sorely lacking.
I would really appreciate any help in this. Thank you very much.