Hi!
I did a manual MVP of an algorithm in Google Forms & Google Sheets that’s sort of like this:
Get a survey, and question 1 asks you: A or B? (weights 30%)
If you choose A, you get +1 point.
If you choose B, you get +3 points.
Then question 2 asks: C or D? (weights 70%)
If you choose C, you get +1 point.
If you choose D, you get +3 points.
Then you sum up a weighted average of your points. Let’s say you chose A and D. That’s 1 point * 30% + 3 points * 70%
And then in another tab of this google sheet I’ve got a table that’s something like:
Respondant | Company | Result
Person A | XYZ | 2,4
Person B | ABC | 1
And I need users to see a list of every person who replied the survey ordered by result from biggest to lowest, and be able to filter these results by company.
This is a simplification, but the real MVP has many questions, many answers, many points being given, and in the final table, many columns and rows.
There are many topics mixed in this question. I know I can have people answering a survey in my no-code app. I know I can display information filtered by what the user chooses. But my question right now is, how do I run these calculations in the background? Should I have an external database and connect with it through APIs? In an Adalo database, can you make it so if there’s a new reply, the calculations are done automatically and this information is added to the final table?
I’m lost on this last part. Any help would be appreciated.
Thanks a ton!