I have a matrix table with 5 scale points as standard, however I’d like to add in an additional scale point (NA) for just 1 of the statements in the matrix table. Could someone please advise on how to do so?
Solved
Display scale point for only 1 statement in matrix table

Best answer by TomG
Making the assumptions:
- You are not using simple layout
- The last scale point is NA
- The one statement with the NA scale point is last
Then:
Qualtrics.SurveyEngine.addOnload(function() {
var na = jQuery("#"+this.questionId+" td.last");
na.each(function(i) { if(i<(na.length-1)) jQuery(this).find("*").hide(); });
});
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.