I have a variable that can take any value between 0 and 100. I want to create a Select Case statement where each case responds to a range of numbers, as in:
select case <#variable#> {
case <between 0 and 9>
case <between 10 and 19>
case <between 20 and 29>
...and so on
I guess I could do it with 'case <0; 1; 2; 3; 4; 5; 6; 7; 8; 9>' but that does seem cumbersome. Is there another way, or is this on the wishlist for version 5