Here's another problem...
I'm looking to keep a counter of the amount of times that a particular radio button has been clicked for a particular survey. Of course, I can do this with Quotas. But can I reference that total from within the survey itself?
Here's what I want to do: randomly display 3 images side-by-side. However, I care about which image is displayed first, because I want to ensure that of my 300 desired surveys, 100 of them see Image1 first, 100 of them see Image2 first, and 100 of them see Image3 first.
I propose to do this by creating 3 duplicate questions with the following permutations:
Q1_1: Image1, Image2, Image3
Q1_2: Image2, Image1, Image3
Q1_3: Image3, Image1, Image2
So, what I want to do is, in the "Relevance" for that question, I would like to write, "quota1 <= 100"... meaning that if Q1_1 has been seen/selected by the user 100 times, this question will not be displayed.
I could implement this either by checking a quota, or by having a counter variable that increments each time the page is submitted, or by counting responses from previous surveys.
Any help greatly appreciated!