trevors Posted April 8, 2003 Posted April 8, 2003 Hi ....... I have a survey form with about 30 questions (Yes/No). I need to count the total of "Yes" on all the serveys. Simple .................... for some ;-) Trevor
danjacoby Posted April 8, 2003 Posted April 8, 2003 Do you need a total of "Yes" answers to each question, or just the total of "Yes" answers? If the latter, create a calc field that checks each answer and adds 1 for each "Yes". [if(AnswerOne = "Yes", 1, 0) + If(AnswerTwo = "Yes", 1, 0) + If(Answerthree = "Yes", 1, 0)...] If the former, you'll need a separate calc field that returns a 1 for "Yes" and a 0 for "No". You can then create a summary field that totals the calc field(s).
Recommended Posts
This topic is 7971 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now