Hi,
for a typeform we’re creating, each answer adds values to multiple variables. The goal is to show in the end, the 3 highest scoring values to the user.
2 issues/questions here:
- Is there a way to simplify the logic creation and reduce lots of repititve work?
- Is there a way to show only the 3 best performing variables at the end?
Question 1 background:
In MVP-mode, we have 3 questions, ± 6 answers per question and 8 variables. In full-live this will be rather 5 questions, ± 8 answers per question and 20 variables.
The logic looks a bit like this:
if “question X” is “answer A” then Add “value Y” to “variable 1”
if “question X” is “answer A” then Add “value Z” to “variable 2”
and so on.
Meaning in MVP-mode we have to do the above about 3x6x8 times = 144 times
and in full-live version 5x8x20 = 800 times.
While in excel: this is a simple matrix with 5x8 rows and 20 columns each with a value to be added.
Is there a way to import the logic? or at least to duplicate the statement and so we only have to change the value , in order to save time?
or do we really need to do 5-6 clicks per IF-line for 800 times? :-)
Question 2:
Currently, at the end, we show the value of each variable, and with 8 variables this is more or less manageable, however with 20 this, becomes really bad @ UX. So is there a way to only show the max 3 variables?