Hi,
I need to compare a variable with two criterias. For example: I have to check if $i is between 5 and 10, so i have to check if $i is greater than 5 and smaller then 10.
If I use : case $i >= 5 and $i <= 10 its also true if $i is 20...I need something like case $i >=5 and <=10
How can I do this?
//Nimrod