Solved
Distinguish 0 v/s 'Not Applicable' choice in slider
I have a slider with numeric choices from 0 to 4 in the increment of 0.5. I also have 'Not Applicable' option turned on.
In the very next question I have custom validation.
User must provide comments if user selected value in slider is less than 1 or Greater then 3.
No validation is required if user selects 'Not Applicable'
However it seems my validation is failing when user selects 'Not Applicable' since the choice value is coming up as zero.
How to distinguish user selected 0 value v/s 'Not Applicable' selection in Slider ?
I am trying to avoid Java Scripts.
Best answer by TomG
@Amar,
Not Applicable results in a empty value. So, I think you should turn on force response on your slider and the validation should be something like:
If comment not empty
OR (new logic set)
If slider is empty
OR slider >= 1
AND slider <=3
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
