I have a list of numbers and a number range. How can I check if any number in the number list is in the number range?
example 1:
list of numbers: 2,10,20
number range: 20-50
In this example I expect the control value to return yes
example 2:
list of numbers: 2,10,20
number range: 8-12
In this example I expect the control value to return yes
In summary, Range should return the check yes when it contains at least one value in the list of numbers.
I haven’t been able to achieve this with range expressions.