<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Custom Code | Qualtrics Community | Page 1</title>
        <link>https://www.qualtrics.com/community/</link>
        <pubDate>Sat, 07 Sep 2019 20:38:04 +0000</pubDate>
        <language>en</language>
            <description>Custom Code | Qualtrics Community | Page 1</description>
    <atom:link href="https://www.qualtrics.com/community/categories/custom-code-developer-corner/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>Do we have CODE for ranking score with PIPE text?</title>
        <link>https://www.qualtrics.com/community/discussion/5977/do-we-have-code-for-ranking-score-with-pipe-text</link>
        <pubDate>Sat, 07 Sep 2019 11:38:59 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Nynetjer</dc:creator>
        <guid isPermaLink="false">5977@/community/discussions</guid>
        <description><![CDATA[<p>Do we have CODE for ranking score with PIPE text<br />
as descending the biggest to the smallest scores?</p>

<p>You guys will see my result page that there are almost 20 personalities so, It hard to look at what is the TOP 5 personalities scores<br />
If we have the code for as descending the biggest to the smallest scores or to show only TOP 5 scores this will be perfect.</p>

<p><img src="https://us.v-cdn.net/6030293/uploads/editor/cm/9q3sojocz3js.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Is there a way to use javascript to change the visibility of questions?</title>
        <link>https://www.qualtrics.com/community/discussion/5973/is-there-a-way-to-use-javascript-to-change-the-visibility-of-questions</link>
        <pubDate>Fri, 06 Sep 2019 22:46:38 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>DRSK</dc:creator>
        <guid isPermaLink="false">5973@/community/discussions</guid>
        <description><![CDATA[<p>I'm new to Qualtrics trying to have In-Page Display Logic applied to a question with Choice Display Logic. With the standard Quatrics tools it isn't working (see inactive 'In Page' check box in image).<br />
<img src="https://us.v-cdn.net/6030293/uploads/editor/42/j101ay48sd8o.png" alt="" title="" /></p>

<p>Is there a way to use javascript to change the visibility of questions (based on the selection of other questions)?</p>

<p>I thought this might be a standard problem but I couldn't find anything here.</p>

<p>Thanks for your help in advance.</p>
]]>
        </description>
    </item>
    <item>
        <title>store Filename and UniqueID uploaded file to Embbeded Data Field</title>
        <link>https://www.qualtrics.com/community/discussion/5948/store-filename-and-uniqueid-uploaded-file-to-embbeded-data-field</link>
        <pubDate>Thu, 05 Sep 2019 11:43:48 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Nico_Leussink</dc:creator>
        <guid isPermaLink="false">5948@/community/discussions</guid>
        <description><![CDATA[<p>In a survey I have an option to upload a file, in my case an image. Normaly I can create Embedded Data Fields to store the filename and URL to the Embedded Data Fields using ie ${q://QID1/UploadedFileName} for Filename and ${q://QID1/UploadedFileLink} for URL. However, this can only be stored to Embedded Data Fields when the Next-button is pressed.</p>

<p>Now I want the selected filename and URL be stored in Embedded Data Fields when I press the Back-button. I know how to store Text from Textfields, like:</p>

<p>Qualtrics.SurveyEngine.addOnPageSubmit(function() {<br />
    var answer = jQuery("#"+this.questionId+" .InputText").val();<br />
    Qualtrics.SurveyEngine.setEmbeddedData('MyText', answer);<br />
});</p>

<p>The Embedded Data Field called 'MyText' wil contain the text wich is typed into the questions text field. What do I need to change in the jQuerystring (where I read .InputText' to get the text out of the textfield) to get the Filename and URL of an uploaded file?</p>

<p>Thanks in advance.</p>
]]>
        </description>
    </item>
    <item>
        <title>Columns Width for tables from web service</title>
        <link>https://www.qualtrics.com/community/discussion/5876/columns-width-for-tables-from-web-service</link>
        <pubDate>Sun, 01 Sep 2019 10:36:03 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>ClaraT</dc:creator>
        <guid isPermaLink="false">5876@/community/discussions</guid>
        <description><![CDATA[<p>How can I manage the width of columns of a table within a question? <br />
The table is created using a "web service" component (not a qualtrics question type), and currently qualtrics presents the columns with different widths.</p>
]]>
        </description>
    </item>
    <item>
        <title>Dynamic accessing slider value</title>
        <link>https://www.qualtrics.com/community/discussion/5963/dynamic-accessing-slider-value</link>
        <pubDate>Fri, 06 Sep 2019 06:55:17 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>avikram</dc:creator>
        <guid isPermaLink="false">5963@/community/discussions</guid>
        <description><![CDATA[<p>I've inserted two sliders in a question, and I need their values (need to perform math operations on those values to arrive at a final score I need to display on the same page - related to a previous <a rel="nofollow" href="https://www.qualtrics.com/community/discussion/5854/how-to-display-score-on-survey-page-that-dynamically-updates#latest" title="question">question</a> I had asked).</p>

<p>A screenshot of the question with the values I want to get highlighted:</p>

<p><img src="https://us.v-cdn.net/6030293/uploads/editor/9k/41if90koz4co.png" alt="" title="" /></p>

<p>I thought this was a pretty straightforward task of accessing the element by id and getting the value via either<br />
1. var sliderValue = document.getElementById("QID15~10~true-result").value(); //I can apply a parseInt on sliderValue later<br />
2. jQuery("#QID15~10~true-result").val()</p>

<p>But neither seems to work and I'm not sure why. To present the full problem, whenever the user changes the value of the slider, I'd want the changed score to be recorded and displayed on the same page (much akin to my previous question). For that end, I'd written this code:</p>

<p>`jQuery("input[type = hidden]").change(function () {<br />
        if(jQuery("#QID15~10~true-result").val().length == 0){ <br />
            var sliderScore = 0;<br />
        } else{<br />
                var sliderScore = parseInt(jQuery("#QID15~10~true-result").val());<br />
            }</p>

<pre><code>    //do something with sliderScore here
});`
</code></pre>

<p>But would this work, even once I access the slider value? An obvious pitfall in what I've done would be that if I click on other "hidden" type elements on the page, then the score would get unnecessarily updated. Should the question ID come inside that jQuery then?</p>

<p>As a sidenote: is this even the most optimal way to do it? I just need a numeric response from the user anyways. An alternate methodology I was thinking would be to have a text field (with entry limited to numbers from 0-100). But I'm not sure how easier/more difficult would it be to pull values from such a field in JS.</p>

<p>Thanks!</p>

<p>EDIT: I figured out a piece of code to allow me access to one slider's value, viz,</p>

<p><code>parseInt(jQuery("#QID15 input.ResultsInput").val(), 10);</code></p>

<p>But for now it only allows me access to the first slider's value. Not sure how to get it for both as of now.</p>
]]>
        </description>
    </item>
    <item>
        <title>How to display score on survey page that dynamically updates?</title>
        <link>https://www.qualtrics.com/community/discussion/5854/how-to-display-score-on-survey-page-that-dynamically-updates</link>
        <pubDate>Fri, 30 Aug 2019 08:15:29 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>avikram</dc:creator>
        <guid isPermaLink="false">5854@/community/discussions</guid>
        <description><![CDATA[<p>Hi. I am new to Qualtrics and could not find a solution (or wasn't able to fully implement/build on current solutions) to my problems.</p>

<p>I am designing a survey, wherein every question is scored, and a final score is calculated on the basis of these individual scores using a mathematical formula (for now, consider a simple summation of all scores, which is then multiplied by 3). So I wanted help on two fronts:</p>

<ol>
<li><p>Firstly, it seems I need to create an embedded data field to calculate the final score, but the formula I've typed isn't working. Need to figure out what's wrong in my current formula or if an easier one is possible<br />
<img src="https://us.v-cdn.net/6030293/uploads/editor/xj/i8h0f83h5dqk.png" alt="" title="" /></p></li>
<li><p>Secondly, I want to display this final score on the top of the page. When we change our response to a question (by selecting another option), this score should be immediately be updated without me going to a different page. I know it seems strange for a respondent to immediately know how his/her response changes the final score, but this is by deliberate design in this case. I tried using solutions to these questions, but wasn't able to make them work:</p></li>
</ol>

<p><a href="https://www.qualtrics.com/community/discussion/comment/41#Comment_41" rel="nofollow">https://www.qualtrics.com/community/discussion/comment/41#Comment_41</a><br />
<a href="https://www.qualtrics.com/community/discussion/3092/creating-a-variable-to-add-all-the-scores-of-the-survey-respondents" rel="nofollow">https://www.qualtrics.com/community/discussion/3092/creating-a-variable-to-add-all-the-scores-of-the-survey-respondents</a></p>

<p>I am new to both JS and HTML as well and am learning it as I go along making this survey.</p>

<p>Would be really grateful if someone could help me out on this!<br />
Thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>Randomize blocks keeping page breaks</title>
        <link>https://www.qualtrics.com/community/discussion/1385/randomize-blocks-keeping-page-breaks</link>
        <pubDate>Tue, 24 Jul 2018 20:59:56 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>marcomzp</dc:creator>
        <guid isPermaLink="false">1385@/community/discussions</guid>
        <description><![CDATA[<p>I want to randomize all questions of specific blocks. However, when I use Qualtric's default features, all page breaks are lost and I want to maintain them. Is there any code I can add in order to randomize the questions and still keep the page breaks?<br />
Thanks in advance!</p>
]]>
        </description>
    </item>
    <item>
        <title>How can change in-line question ratings in a single bar instead of multiple bars</title>
        <link>https://www.qualtrics.com/community/discussion/5890/how-can-change-in-line-question-ratings-in-a-single-bar-instead-of-multiple-bars</link>
        <pubDate>Mon, 02 Sep 2019 13:47:15 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Kesav</dc:creator>
        <guid isPermaLink="false">5890@/community/discussions</guid>
        <description><![CDATA[<p><img src="https://us.v-cdn.net/6030293/uploads/editor/cq/hy1ewbnt7xok.jpg" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>How do I randomly show 10/93 blocks, themselves divided unevenly into 7 bins, without replacement?</title>
        <link>https://www.qualtrics.com/community/discussion/5915/how-do-i-randomly-show-10-93-blocks-themselves-divided-unevenly-into-7-bins-without-replacement</link>
        <pubDate>Tue, 03 Sep 2019 18:51:26 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Cultevolab</dc:creator>
        <guid isPermaLink="false">5915@/community/discussions</guid>
        <description><![CDATA[<p>Hello!</p>

<p>I am a PhD student in psychology runnning a study with some complicated randomization that I can't quite figure out how to implement in Qualtrics. I've described the math of what I need below, I'm just not sure how to make it happen in Qualtrics.</p>

<p>I have 93 blocks, divided <em>unevenly</em> into 7 bins. Each block needs to be viewed by 50 participants, and each participant will see 10/93 blocks. The blocks need to be pulled from one of seven bins, in a quasi-random fashion. Specifically, because each bin has a different number of blocks in it (as you can see below) and I need each block to be seen 50 times across participants, blocks need to be randomly pulled from the bins at different probabilities. So, b/c of the # of blocks in each bin, out of the 10 blocks that each participant sees, on average 1.72 should be from Bin 1, 2.04 from Bin 2, etc. In other words, I need Qualtrics to randomly select each block (<strong>without repeats</strong>; e.g., I don't want a participant to see Block 17 more than once) from one of the bins based on those probabilities. So, for each block selected, there should be a 17.2% likelihood of it being from Bin 1, a 20.4% chance of it being from Bin 2, and so on for each block that is selected. Put differently, a block should be selected from Bin 1 17.2% of the time, but when a block is selected from Bin 1, it should be selected randomly and without replacement for a participant. Is this clear?</p>

<p>Is there a way to implement this in Qualtrics? I would really appreciate an answer to this as it's quite over my head.</p>

<p>Thank you!<br />
A confused grad student</p>

<p><img src="https://us.v-cdn.net/6030293/uploads/editor/7o/hwl0sihcnijq.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Hiding Question Text</title>
        <link>https://www.qualtrics.com/community/discussion/2256/hiding-question-text</link>
        <pubDate>Thu, 11 Oct 2018 18:01:19 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>TracyL</dc:creator>
        <guid isPermaLink="false">2256@/community/discussions</guid>
        <description><![CDATA[<p>I'd like to hide the question text for a number of questions in my survey.  Is there code that will allow me to do this, question by question (and not for the entire survey)?  Thanks!</p>
]]>
        </description>
    </item>
    <item>
        <title>NPS different layout needed</title>
        <link>https://www.qualtrics.com/community/discussion/4628/nps-different-layout-needed</link>
        <pubDate>Tue, 14 May 2019 09:13:22 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>BettoLamacchia</dc:creator>
        <guid isPermaLink="false">4628@/community/discussions</guid>
        <description><![CDATA[<p>Hi everybody,</p>

<p>we need to implement a NPS scale with the following layout.</p>

<p>We are willing to use different question types if this can help us to keep this structure.</p>

<p>Is there any custom code we can use?</p>

<p>Thanks in advance!<br />
<img src="https://us.v-cdn.net/6030293/uploads/editor/mz/u0v4z22nar1r.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>How to toggle display a question based on the selection from a dropdown question in the same page</title>
        <link>https://www.qualtrics.com/community/discussion/5943/how-to-toggle-display-a-question-based-on-the-selection-from-a-dropdown-question-in-the-same-page</link>
        <pubDate>Thu, 05 Sep 2019 07:04:48 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Sumeshsdn</dc:creator>
        <guid isPermaLink="false">5943@/community/discussions</guid>
        <description><![CDATA[<p>Hi,</p>

<p>I want to toggle display an open-end question based on the selection from a dropdown question on the same page. I did manage to do this for a single choice question and below is the code. But again, this is not needed since we have an inpage display logic feature in Qualtrics. Inpage display logic is not supported for dropdown questions thus I am trying to implement it through javascript. The problem here is that I am unable to find the element type and ID for dropdown questions. Let me know if anyone did manage to implement it and if so how could it be done.</p>

<p>Qualtrics.SurveyEngine.addOnload(function ()<br />
{<br />
    document.getElementById("QID8").style.display="none";</p>

<pre><code>this.questionclick = function(event,element)
{
    console.log(event, element);
    if (element.type == 'radio')
    {
        var choiceNum = element.id.split('~')[2];

        var x = document.getElementById("QID8");

        if (choiceNum == 479)
        {
            x.style.display="block";
        }
        else
        {
           x.style.display="none";
        }
    }
}
</code></pre>

<p>});</p>
]]>
        </description>
    </item>
    <item>
        <title>Can't Pre-select two answer options</title>
        <link>https://www.qualtrics.com/community/discussion/5941/cant-pre-select-two-answer-options</link>
        <pubDate>Thu, 05 Sep 2019 03:32:12 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Deep</dc:creator>
        <guid isPermaLink="false">5941@/community/discussions</guid>
        <description><![CDATA[<p>Hi there,</p>

<p>I have two questions -  Q9 and Q17.</p>

<p>If I select <strong>Q9 = Canberra Centre</strong> (Q9 = 5) and <strong>Q9 = At the Game master’s exhibition (Q9 = 4),</strong>  then the options in Q17 which are <strong>Q17 = 1</strong> and <strong>Q17 = 14</strong> should be pre-selected.</p>

<p>So <em><strong>Q9 = Canberra Centre</strong></em> –&gt; <em><strong>Q17 = 14</strong></em> should be selected.<br />
<em><strong>Q9 = At the Game master’s exhibition</strong></em> –&gt;  <em><strong>Q17 = 1</strong></em> should be selected.</p>

<p>For both these options, If I select single option, then the option in Q17 is selected but If I select both, none of the options are selected.</p>

<p>Here is my Javascript code:<br />
<img src="https://us.v-cdn.net/6030293/uploads/editor/xz/bu56ijjmiusa.png" alt="" title="" /></p>
]]>
        </description>
    </item>
    <item>
        <title>Need to get an image in the header centered</title>
        <link>https://www.qualtrics.com/community/discussion/1263/need-to-get-an-image-in-the-header-centered</link>
        <pubDate>Tue, 10 Jul 2018 20:51:23 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>uhrxx005</dc:creator>
        <guid isPermaLink="false">1263@/community/discussions</guid>
        <description><![CDATA[<p>Would anyone be willing to share some code with me for centering an image within the header? I am inexperienced with coding and in the past I have gotten around this issue by centering a table and placing the image within the table. That no longer seems to be compatible with mobile devices so I am in need of a new way to center an image in the header.</p>

<p>Any help would be greatly appreciated!</p>

<ul>
<li>David</li>
</ul>
]]>
        </description>
    </item>
    <item>
        <title>Maintaining line breaks when &quot;Essay&quot; type is saved</title>
        <link>https://www.qualtrics.com/community/discussion/5928/maintaining-line-breaks-when-essay-type-is-saved</link>
        <pubDate>Wed, 04 Sep 2019 06:04:32 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>jporich</dc:creator>
        <guid isPermaLink="false">5928@/community/discussions</guid>
        <description><![CDATA[<p>Hi all,</p>

<p>First time post as I'm a bit stumped.</p>

<p><strong>The issue:</strong><br />
Qualtrics seems to not maintain formatting upon submission of multine/essay type questions.</p>

<p>I thought I could tackle this with some jQuery but I'm having no luck still.</p>

<p><strong>My solution attempt:</strong><br />
- Essay type question<br />
- on the question is the following JS/jQuery:</p>

<pre><code>Qualtrics.SurveyEngine.addOnload(function()
{
    /*Place your JavaScript here to run when the page loads*/
    console.log("loaded question "+this.questionId);
    jQuery("#"+this.questionId+" textarea").on("blur", function() {
        jQuery(this).val().replace("\n","&lt;br&gt;");
    });


});

Qualtrics.SurveyEngine.addOnReady(function()
{
    /*Place your JavaScript here to run when the page is fully displayed*/


});

Qualtrics.SurveyEngine.addOnUnload(function()
{

});
</code></pre>

<p><strong>Coding steps:</strong></p>

<ol>
<li>Targetting the textarea</li>
<li>When it unfocuses</li>
<li>Change the value contained within</li>
</ol>

<p>I seem to be stuck on step 3 - the blur works fine. It's difficult to tell whether I've succeeded or not (recommendations here appreciated too - if there's a good function to present unencoded text so I can visibly spot &lt;br&#62; vs \n ?)</p>

<p>This whole scenario seems silly as "multi-line" fields are still "actually-really-one-line" fields.</p>

<p>Any help much appreciated - completely new to the API, and rusty with my jQuery.</p>
]]>
        </description>
    </item>
    <item>
        <title>Incidence based cross tab</title>
        <link>https://www.qualtrics.com/community/discussion/5930/incidence-based-cross-tab</link>
        <pubDate>Wed, 04 Sep 2019 09:38:35 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Arun</dc:creator>
        <guid isPermaLink="false">5930@/community/discussions</guid>
        <description><![CDATA[<p>Hi,<br />
I am new to Qualtrics.</p>

<p>I have created some test project and playing with those for analysis.<br />
Today I have created a project where asking 3 questions only. First Q1 Is there any children age below 18 in house hold. Second Q2 How many children age below 18 if coded Yes in Q1. Third Q3 shows a grid to capture age of number of children mentioned in Q2. Now I would like to give a table where the base would be number of children in top break (NOT the number of respondent). Side break is age of children. Please have a look into the data as attached I have captured for 4 respondents so the base (Total) would be 9 (NOT 3 or 4). In side break the count for</p>

<p>Age 1 -&gt; 1<br />
Age 2-&gt; 1<br />
Age 4-&gt; 1<br />
Age 6-&gt; 2<br />
Age 8-&gt; 1<br />
and so on.</p>

<p>Can you please help me to know how can I do it in Cross tab or something else. How can I show the percentage also based on total number of children which is 9 here.</p>

<p>Thanking you,<br />
Regards,<br />
Arun</p>
]]>
        </description>
    </item>
    <item>
        <title>¿How can I use the math to a numeric value input?</title>
        <link>https://www.qualtrics.com/community/discussion/5927/how-can-i-use-the-math-to-a-numeric-value-input</link>
        <pubDate>Wed, 04 Sep 2019 05:23:48 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>a01066333</dc:creator>
        <guid isPermaLink="false">5927@/community/discussions</guid>
        <description><![CDATA[<p>I want to multiply a value either inputed by text entry, or by the slider and be able to use math operations from the Piped text to use some formulas with the numbers entered by the user.</p>
]]>
        </description>
    </item>
    <item>
        <title>Pre-select and Hide Question</title>
        <link>https://www.qualtrics.com/community/discussion/5896/pre-select-and-hide-question</link>
        <pubDate>Mon, 02 Sep 2019 23:28:45 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Deep</dc:creator>
        <guid isPermaLink="false">5896@/community/discussions</guid>
        <description><![CDATA[<p>Hi there,</p>

<p>If I choose one option in Question A (Let's say A = 1) then I want to Pre-select Question B = 1  and Hide that Question - but it should move to next page as there are no questions on that particular page.</p>

<p>Also will I be able to record the response?</p>

<p>Is that Possible or any better way around?</p>

<p>Thanks</p>
]]>
        </description>
    </item>
    <item>
        <title>Dropdown answers in-line with question text</title>
        <link>https://www.qualtrics.com/community/discussion/5744/dropdown-answers-in-line-with-question-text</link>
        <pubDate>Tue, 27 Aug 2019 02:34:28 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>IanO</dc:creator>
        <guid isPermaLink="false">5744@/community/discussions</guid>
        <description><![CDATA[<p>Does anyone know how to have a dropdown list of answer choices appear in-line with the the text of a question? Like Madlibs! I'm trying to come close to the TOFHLA (a metric for health literacy assessment), an example is the bottom half of Fig 7 on this webpage: <a href="https://www.medscape.org/viewarticle/566053_5" rel="nofollow">https://www.medscape.org/viewarticle/566053_5</a></p>

<p>I think the best way for me to replicate this in Qualtrics is with an in-line dropdown answer box replacing the blank. Any idea how to do that? Or a different suggestion?</p>
]]>
        </description>
    </item>
    <item>
        <title>&quot;Request response&quot; alert on a constant sum question when the total does not equal 100</title>
        <link>https://www.qualtrics.com/community/discussion/5861/request-response-alert-on-a-constant-sum-question-when-the-total-does-not-equal-100</link>
        <pubDate>Fri, 30 Aug 2019 15:47:34 +0000</pubDate>
        <category>Custom Code</category>
        <dc:creator>Diarmaid</dc:creator>
        <guid isPermaLink="false">5861@/community/discussions</guid>
        <description><![CDATA[<p>I have a constant sum question, and the total should add up to 100 when respondents fill it out.  I could set the validation to "must total" to force the response total to be 100, but in order to maximise participant survey completion rates, I don't want to force responses in my survey.  Is there a way to generate some sort of a "request response" message if respondents click submit after incorrectly filling out the question (the total doesn't add up to 100)?  I'm thinking of a message that appears once and gives respondents the option to return to the question to fill it out correctly, but also the option to just proceed to the next question.</p>
]]>
        </description>
    </item>
   </channel>
</rss>
