I'm trying to design a survey that includes the following 3 questions, each becoming more granular before the previous question and containing choices dependent on the previous questions:
- What building do you work at?
- What area do you work at?
- What specific location do you work at?
There are 5 possible choices to question 1: UB, UD, UH, UL, UO
There are 10 possible choices to question 2: Classrooms, Hallways/Pods, Cafeteria, Common Spaces, Copy Room/Staff Office, Main Office, Supply Room, Adult Restroom, Student Restroom, Gym
There's no display logic needed for question 2, since all choices from question 1 allow all choices for question 2.
Now for the fun part, question 3, which has a bunch of possible choices since they depend on the answers to questions 1 and 2.
Ex: if someone choose UB and Classrooms, they should have 33 possible choices. If they were to choose UH and Classrooms, they should have 48 different choices.
I've been able to think of 2 possible solutions for the last question:
- Create a total of 50 (5x10) questions, each containing the specific options for each Q1+Q2 answer combination, and create display logic at the question level based on responses to the first two questions.
- Create just 10 questions, each for the options from the second level containing all the possible answers. Set the display logic at the answer choice level. This seems more tedious since I would have to click into each answer choice and set the logic manually for a bunch of answer choices.
Are there any other options?
Looking for something that wouldn't require too much time to design while also keeping it visually okay for a person to experience as a survey-taker.