Paul's suggestions are good. Remember that with a numeric there is a very large number of possible inputs to the case structure, and LV has to have them all covered. You see you might know that there will never be (for example) negative number, but the compiler doesn't know that. Hence you have to tell LV what to do if a value less than 0 should appear at its input terminal.
This is why numeric and string case structures almost always end up having a default case. On the other hand, enum case structures often don't have a default case because the enum definition logically limits the possible values the input can take.
So you can use the range functions as Paul suggested, or create a default case that will never be executed. It's up to you.
Mike...