I am trying to create almost like an Order Quote with Qualtrics and am stuck on figuring out a way to display the inputted values from a Constant Sum question. I am trying to take those inputted values (not the Total) and display them at the end of the survey. The values are used for “Quantity” of a product and I want to display them for the customer at the end.
Solved
Help with Constant Sum
Best answer by TomG
I am still kinda a novice at Qualtrics, how would I go about doing this? I have added javascript to a Question before, but not applying it to Piped Text etc. Thanks
Let’s say you’ve piped the results into a table with 31 rows. You would have cells like this:
<td class="cspipe">${q://QID1/ChoiceNumericEntryValue/x1}</td>To hide the rows with blank pipes:
jQuery("#"+this.questionId+" .cspipe").each(function() {
var cspipe = jQuery(this);
if(cspipe.text()=="") cspipe.parent().hide();
});In this example the parent is a table row. However, I’ve written it so it would apply to any type of parent/child element relationship (e.g., <tr><td>, <div><span>, <li><span>, etc.).
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
