Modifying numerical values for Rank Order question | XM Community
Skip to main content

I am trying to change the numbers highlighted in the red box to something like (1, least important; 2; 3, most important)
image.pngHowever there seems to be no way of doing it. Any ideas on how to achieve this?

chingweelim
Why don't you use likert matrix table? You will be able to do the same view in it and edit the labels.
To change the numbers here in rank order only you can custom code it and add onload.
jQuery('#'+this.questionId).find('th')[0].innerText= '1,least important';
jQuery('#'+this.questionId).find('th')[2].innerText= '3,most important';
Hope it helps!


Deepak
That is possible. However, likert means there is a chance where participants can enter duplicate rankings. So instead or 1,2,3 he could enter 1,1,3 by mistake. Rank order questions prevents such mistakes from happening.


https://community.qualtrics.com/XMcommunity/discussion/comment/52165#Comment_52165Sorry, just went on visual basis. I hope the code worked for you!


Leave a Reply