Hello all!
I have a choice list with integers and want to do a calculation based on the given number. My list looks like this. 50, 55, 60, 65 … 95, 100, 105 etc.
If the user answers e.g. 70, I want to catch all the choices from 70 and above. So I tried: if(${integerquestion} >= '70', ‘1’, ‘0’).
This works well between 70 to 95 but it doesn’t give me anything above 100. One solution is to use:
if(${integerquestion} = '70' or ${integerquestion} = '75' … ${integerquestion} = '120'
This is very ineffective and surely there is better solution out there. Does anyone have a solution for this?