﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 4  » I want to do conditional branching with multiple survey pages ? also a way to pose questions both horizontally and vertically?</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Thu, 24 Sep 2026 15:21:34 GMT</lastBuildDate><ttl>20</ttl><item><title>I want to do conditional branching with multiple survey pages ? also a way to pose questions both horizontally and vertically?</title><link>https://forums.millisecond.com/Topic17272.aspx</link><description>Hi,&amp;nbsp;&lt;br/&gt;&lt;br/&gt;I am trying to code an experiment where I can do conditional branching with multiple survey pages.&amp;nbsp;&lt;br/&gt;&lt;br/&gt;So if someone answers "1" to the first question, then he should be guided to survey#1.&lt;br/&gt;This survey #1 contains about 5 survey pages with 4 questions per page (these questions would be radiobutton ones).&amp;nbsp;&lt;br/&gt;&lt;br/&gt;and if someone answers "2" to the first question, then he should be guided to survey#2.&amp;nbsp;&lt;br/&gt;This survey #2 also contains about 5 survey pages with 4 questions per page (these questions would be radiobutton ones).&amp;nbsp;&lt;br/&gt;&lt;br/&gt;Also,is there a way to pose questions horizontally and vertically? like the following:&amp;nbsp;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;q1. ------------------ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; q.6---------------------------&lt;br/&gt;q2. ------------------ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; q.7---------------------------&lt;br/&gt;q3. ------------------ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; q.8---------------------------&lt;br/&gt;q4. ------------------ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; q.9---------------------------&lt;br/&gt;q5. ------------------ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; q.10---------------------------&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;please help me out!&lt;br/&gt;much appreciated in advance!!!!!!</description><pubDate>Wed, 30 Sep 2015 18:06:33 GMT</pubDate><dc:creator>ghdtjs</dc:creator></item><item><title>RE: I want to do conditional branching with multiple survey pages ? also a way to pose questions both horizontally and vertically?</title><link>https://forums.millisecond.com/Topic17317.aspx</link><description>thank you Dave!!!&lt;br/&gt;I will try them out!</description><pubDate>Wed, 30 Sep 2015 18:06:33 GMT</pubDate><dc:creator>ghdtjs</dc:creator></item><item><title>RE: I want to do conditional branching with multiple survey pages ? also a way to pose questions both horizontally and vertically?</title><link>https://forums.millisecond.com/Topic17274.aspx</link><description>Regarding orienting and positioning questions:&lt;br/&gt;&lt;br/&gt;#1: See the documentation /orientation attribute to switch a given questions layout between vertical and horizontal:&lt;br/&gt;&lt;br/&gt;&amp;lt;radiobuttons startquestion&amp;gt;&lt;br/&gt;/ options = ("A", "B")&lt;br/&gt;/ orientation = vertical&lt;br/&gt;&amp;lt;/radiobuttons&amp;gt;&lt;br/&gt;vs,&lt;br/&gt;&amp;lt;radiobuttons startquestion&amp;gt;&lt;br/&gt;/ options = ("A", "B")&lt;br/&gt;/ orientation = horizontal&lt;br/&gt;&amp;lt;/radiobuttons&amp;gt;&lt;br/&gt;&lt;br/&gt;#2: Use the various questions' /position attributes to distribute them on a given &amp;lt;surveypage&amp;gt; as needed.&lt;br/&gt;</description><pubDate>Mon, 28 Sep 2015 16:30:57 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: I want to do conditional branching with multiple survey pages ? also a way to pose questions both horizontally and vertically?</title><link>https://forums.millisecond.com/Topic17273.aspx</link><description>This is simple. You have three &amp;lt;survey&amp;gt; elements or &amp;lt;block&amp;gt;s.&lt;br/&gt;&lt;br/&gt;From the 1st &amp;lt;survey&amp;gt; /branch to either survey a or b based on the response. Survey a and b contain the respective follow-up questions. Example:&lt;br/&gt;&lt;br/&gt;&amp;lt;expt&amp;gt;&lt;br/&gt;/ blocks = [1=start]&lt;br/&gt;&amp;lt;/expt&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;survey start&amp;gt;&lt;br/&gt;/ pages = [1=startpage]&lt;br/&gt;/ branch = [if (radiobuttons.startquestion.response=="A") survey.afollowup]&lt;br/&gt;/ branch = [if (radiobuttons.startquestion.response=="B") survey.bfollowup]&lt;br/&gt;&amp;lt;/survey&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage startpage&amp;gt;&lt;br/&gt;/ questions = [1=startquestion]&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;radiobuttons startquestion&amp;gt;&lt;br/&gt;/ options = ("A", "B")&lt;br/&gt;&amp;lt;/radiobuttons&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;survey afollowup&amp;gt;&lt;br/&gt;/ pages = [1=a1]&lt;br/&gt;&amp;lt;/survey&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage a1&amp;gt;&lt;br/&gt;/ caption = "Your A follow-up questions and pages go here..."&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;survey bfollowup&amp;gt;&lt;br/&gt;/ pages = [1=b1]&lt;br/&gt;&amp;lt;/survey&amp;gt;&lt;br/&gt;&lt;br/&gt;&amp;lt;surveypage b1&amp;gt;&lt;br/&gt;/ caption = "Your B follow-up questions and pages go here..."&lt;br/&gt;&amp;lt;/surveypage&amp;gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;</description><pubDate>Mon, 28 Sep 2015 16:27:25 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>