How to limit the selection between options in the question type "Rating"?

En el tipo de pregunta Raiting, ¿Cómo puedo limitar la selección entre opciones? Es decir, tengo una lista de 5 opciones que deberán ser seleccionadas del 1 al 10 en el tipo ‘Seleccione uno’, eso es correcto, en esa misma opción no pueden seleccionarse dos números diferentes en esa escala del 1 al 10, solo uno. Sin embargo, quiero saber como evitar que el número se repita entre las 5 opciones, por ejemplo, que si en la opción 1 se colocó el número 3 entonces en la opción 2 no pueda seleccionarse también ese 3. Gracias por su ayuda

Welcome to the community, @EDD! Are you trying to refer to a rating question or a ranking question? Could you have a look at our support article Rating vs Ranking Question Types and reach us back so that we could help you solve your issue?

Hola! me refiero al tipo de pregunta ‘Rating’, gracias.

Hi @EDD, you can try this with a select_one-type question by doing something like this (based on the support article here):

survey

type name label choice_filter relevant
select_one numbers o1 Option 1
select_one numbers o2 Option 2 name!=${o1} ${o1}!=’’
select_one numbers o3 Option 3 name!=${o1} and name!=${o2} ${o2}!=’’
select_one numbers o4 Option 4 name!=${o1} and name!=${o2} and name!=${o3} ${o3}!=’’
select_one numbers o5 Option 5 name!=${o1} and name!=${o2} and name!=${o3} and name!=${o4} ${o4}!=’’

choices

list name name label
numbers 1 1
numbers 2 2
numbers 3 3
numbers 4 4
numbers 5 5
numbers 6 6
numbers 7 7
numbers 8 8
numbers 9 9
numbers 10 10

You can also try this using the likert appearance to have it seem more like a rating question (or try the other appearance modes for select_one)

1 Like

Hola! Agradezco mucho tu apoyo, en el tipo de pregunta ‘rating’ aparecen estas opciones y números del 0 al 5, En este formulario es posible seleccionar el número 3 para las últimas tres palabras: “agrado”, “seguridad” y “esperanza”. ¿Hay alguna manera de impedirlo? Es decir, que si el 3 ha sido seleccionado en “agrado”, entonces no sea posible seleccionarlo en las palabras “confianza”, “seguridad” o “esperanza”; he intentado formular la pregunta tipo ‘jerarquización’ pero no es lo que busco. ¿Cómo puedo hacerlo directamente en Kobo Toolbox, sin utilizar formularios Excel?

Agradezco su valioso apoyo!

Buenas tardes.
Gracias.

@EDD, suppose you had the following options in your rating question:

Option 1 (rating from 1 to 5)
Option 2 (rating from 1 to 5)
Option 3 (rating from 1 to 5)
Option 4 (rating from 1 to 5)
Option 5 (rating from 1 to 5)

Did you mean say if you selected 3 in option 1, option 2 to option 5 should not appear in your choice list?

Hola, si quiero que se sigan mostrando, pero que no sea posible seleccionar el mismo número que se ha seleccionado en otra opción, de manera que cada opción tenga un número distinto.

Gracias por su ayuda.

@EDD, maybe you could do it as outlined in the image shared below:

In the survey tab of your xlsform:

In the choices tab of your xlsform:

Image 2

Data entry screen as seen in Enketo: when no items are repeated

Data entry screen as seen in Enketo: when an item(s) are repeated

Reference xlsform:

Ranking in likert display.xls (27 KB)

Gracias! es justo lo que buscaba

1 Like