Hey all!
I'm having trouble figuring out how to make a repeat appear or not based on the answer of two questions: a yes/no and a select_one question.
Scenario:
User choose No in Question 1.
User chooses a single value in Question 2 - which is a select_one: N/A,1, 2, 3, 4... up to 100.
These values are saved in the Choices spreadsheet.
If a users chooses N/A or 100, I need a repeat to NOT appear.
If they choose values between 1-99, the other repeat will appear.
Right now I'm using regex expressions in the Relevance column as such:
regex(${Question_1}, "n") and regex(${Question_2}, "[1-99]")
I've also tried listing all the values as below (except they keep going):
regex(${Question_1}, "n") and regex(${Question_2}, "[1,2,3,4,5...]")
Both of the above work except if I select "100", then the repeat shows up.
Any ideas are appreciated!!