change "Total" text column on Constant Sum Matrix table | XM Community
Skip to main content

Hi,
I'd like to change the text at the right hand side (column) of a matrix constant sum question from "Total" to something else.
I found the syntax in another thread that changes the bottom total (row) : jQuery("#"+this.questionId+" .c1:last").html("New Total Label");
... but I couldn't figure out how to change this syntax to change the total column i.e. Statement Total Box, rather than Scale Point Total Box.
Thanks!

Hi there, if you still need, you can change the Statement Total Box label to display other text by adding the below code to the OnReady of the question's JavaScript:
var totallabel = document.getElementById("header~total~"+this.questionId);
jQuery(totallabel).html("New Total Label");


https://community.qualtrics.com/XMcommunity/discussion/comment/51407#Comment_51407Thanks Tom


Leave a Reply