I tried with the >= thing peachykeen, but you said me it was going to give me bugs...
Not that it would give *bugs*, but it might do not what you expect it to do if you try it without clear understanding of what you're doing. For example, you *could* have it like this:
1: Well, it seems like you... | Choice=62: Oh god...it seems like ... | Choice=53: Hmm. Well. The last .... | Choice>=3 | "Yes" 5 "No" 64: And...have you noticed... | Choice>=1 | "Yes" 3 "No" 45: Have you made contact... | | "Yes" 1 "No" 2
and it will work even if you don't have double conditions in lines 3 and 4. But if you have exactly same lines in a different order -
1: And...have you noticed... | Choice>=1 | "Yes" 3 "No" 42: Hmm. Well. The last .... | Choice>=3 | "Yes" 5 "No" 63: Oh god...it seems like ... | Choice=54: Well, it seems like you... | Choice=65: Have you made contact... | | "Yes" 1 "No" 2
you'll get the first answer repeated over and over. On the other hand, if you set *strict* conditions, the order of lines won't harm you as long as the line with the first question (that doesn't have Choice in the filter condition) is the bottommost:
1: And...have you noticed... | Choice>=1 Choice<=2 | "Yes" 3 "No" 42: Hmm. Well. The last .... | Choice>=3 Choice<=4 | "Yes" 5 "No" 63: Oh god...it seems like ... | Choice=54: Well, it seems like you... | Choice=65: Have you made contact... | | "Yes" 1 "No" 2
If you're unsure of your results, though, it's usually safest to have a single line per choice number.