03-26-2025 01:37 PM
For a case structure
I know that X>1 can be entered as 1..
Can this be entered into a condition?
0>= X 0 <=1
Solved! Go to Solution.
03-26-2025 01:43 PM - edited 03-26-2025 01:46 PM
If you enter 1.., it means x>=1, not x>1 !
Cases are integers (Did you see the coercion dot when you wire something orange?!) and I cannot see the logic in your conditions ( "0>= X 0 <=1" ) for example what does that second zero indicate?
You can make a case for "0, 1", if that's what you mean.
If you want to do floating point ranges, you can use the output of "in range and coerce". If you want to classify into several ranges other tools are available.
03-26-2025 01:55 PM
Thank you that answered my question very well