Hi
I am wanting to create a conditional rule for forms that, dependent on the answers selected by respondents sends them to different pages.
E.g. respondent 1 answers YES to questions 1,2,3 - presses submit. They are taken to page XYZ
respondent 2 answers NO to questions 1,2,3 - presses submit. They are taken to page ABC.
Is this possible?
Many thanks
Not without a bit of javascript to help you. 
I have a kind of related question, which is how to best to take values from one form and be able to use them in another. I got around it by nesting my second form into the thankyou page of the first form.
(The first form takes an id number that the user enters, and the second form uses that id in a url to bring in an external map, and it also puts the id into a hidden input field so its collected along with the results).
But is there a better way of taking the result of a users input and using that input on the result page - to conditionally show content, or to do something else?
Thanks,
Charlie.
[quote]
But is there a better way of taking the result of a users input and using that input on the result page - to conditionally show content, or to do something else?
[/quote]
The only way I have ever been able to do this is by using javascript. So on Thank You page you could have your js check for a specific value of the submitted form. If it finds that value, show some content, if it doesn't, show some other content.
Other than using js I can't think of a way that it would be possible.