Solved
Is there a way i can change the visual of the NPS question?
I would like to trial the scale showing from 10-0 not 0-10. I'm not changing the promotor/passive/detractor numbers.
Best answer by TomG
Two issues with not using the JavaScript approach:
1. You lose the automatic promotor/passive/detractor categorizations
2. You lose the NPS question formatting (i.e., the scale won't be horizontal on a mobile device).
If you manually adjust/swap the scale labels, then it is just three lines of JS code:
```
Qualtrics.SurveyEngine.addOnload(function() {
var labels = jQuery("#"+this.questionId+" tr td.LabelContainer");
var tr = labels.eq(0).closest("tr");
labels.each(function(i) { if(i > 0) tr.prepend(jQuery(this)); });
});
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

You need to remember to recode the values so that 0 represents 10, 1 represents 9 etc. in your survey.
!
Before recoding it looks like the following:
!
On the (Vocalize) dashboard you can build the reporting normally by using NPS-metric type for the plain NPS number and other widget types for showing percentages of categories or number of responses per scale point etc .
BTW, in this case it would also be possible to include an option of "Don't want to answer/Don't know" etc. if you typically use that in your surveys as an response option. At least I have faced some problems with some surveys when there isn't any option to visibly opt out. Naturally you don't need to force a Respondent to answer to the NPS question, but then you don't know whether he just forgot to answer or didn't want to answer. In that case you might also run into problem if you e.g. embed this question in your invitation email and the rspondent doesn't want to answer to this specific question, because then he cannot acess the rest of the questionnaire.