Does anyone know how to use ranges when using the case function in Crystal 8. I can use the case function when I compare {field} to a specific value or if I want to test if {field} is just less than value or greater than value:
select {field}
case is > value:
"something"
case value:
"something else"
but what if what I want to do is to test if {field} is less than value1 AND greater than value2???
Thanks in advance for your replies.
select {field}
case is > value:
"something"
case value:
"something else"
but what if what I want to do is to test if {field} is less than value1 AND greater than value2???
Thanks in advance for your replies.