I’m planning a survey with a randomly awarded incentive. The odds of winning the incentive will change based on total response count. The first 1k respondents will have the best odds, then the next 1k, and then the rest. I was thinking of using quotas to branch into the different randomizers for each group.
I’ve never used quotas before and I’m having a hard time getting it to work as intended. I created a simple quota that incremented if an embedded data field was populated. The problem is it incremented for all of the quotas rather than the first one. How do I create a single quote that increments when I survey is completed, then when that quota is fulfilled a subsequent quota starts incrementing, and so on.
Best answer by Chee Heng_SZ
Hi @Paul25 ,
You can try either of the below:
Change the condition for randomizer to check based on total quota, meaning only use one quota as reference (e.g. total quota <=1k run randomizer1, total quota >1k AND <=2k run randomizer2...)
Add additional condition for the Quota. (e.g. Quota1 increment when ED=true, Quota2 increment when ED=true AND Quota1 has been met, Quota3 increment when ED=true AND Quota2 has been met...)
Note:
1) for scenario 2, earlier quotas will continue to increase quota count unless you enable the “Do not increment quota counts”.
Change the condition for randomizer to check based on total quota, meaning only use one quota as reference (e.g. total quota <=1k run randomizer1, total quota >1k AND <=2k run randomizer2...)
Add additional condition for the Quota. (e.g. Quota1 increment when ED=true, Quota2 increment when ED=true AND Quota1 has been met, Quota3 increment when ED=true AND Quota2 has been met...)
Note:
1) for scenario 2, earlier quotas will continue to increase quota count unless you enable the “Do not increment quota counts”.
Thank you for the suggestion. Thinking through it helped me realize I was overthinking the setup. I just needed to create the first quota to increment until it was met. Then the second quota would increment when the first quota was met and until the second quota was met. And so on.
Below each quota was a randomizer with a different number of outcomes based on each group’s odds of winning.