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

Modifying numerical values for Rank Order question

  • November 15, 2022
  • 3 replies
  • 120 views

Forum|alt.badge.img+1

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?

3 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • November 15, 2022

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!


Forum|alt.badge.img+1
  • Author
  • November 15, 2022

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.


Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • November 15, 2022

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