07-14-2009 03:12 AM
I am trying to write a case structure which is similar to the following
case is between 0 and 10
case is between 11 and 20
..
..
case is between 90 and 100
How can I do this without hacking it?
Thanks in advance
Solved! Go to Solution.
07-14-2009 03:35 AM
Hi,
I think you can do this quiet easily with a normal case structure.
To handle numbers between 0 and 10, just type "0..10" in the case selector, and so on, like in the picture attached.
That should do it! Note, you will have to include a Default case to handle numbers below zero or above 20 in my case...
12-09-2009 03:40 PM
Hello,
I have a different question on this case structure problem:
How do I make a case selector to be 0 (default) and 1 if
Case 0: the numeric number does not change.
Case 1: the number number does change.
Thanks,
12-09-2009 04:16 PM
12-09-2009 04:21 PM
12-10-2009 01:00 PM