Matrix Table constant sum with Total Box | XM Community
Skip to main content

Hello :)
I have a question regarding the matrix table with total box. Is it possible that the fields are empty before the participant sees the question (not as in the attached screenshot)?
I fear that this influences the participants...
Thanks!
Qualtrics.PNG

Here's a simple, but imperfect solution:
Qualtrics.SurveyEngine.addOnload(function() {
var inputs = jQuery("#"+this.questionId+" .ChoiceRow td input");
inputs.each(function() { if(this.value=="0") this.value=""; });
});
It is imperfect because it will overwrite entered zeros if the previous button is used to come back to the question.


Thank you very much!
Have a good day :)


Leave a Reply