I\'m using an Or statement in my case expression.
Even though I have a value within this range, it didn\'t find a match. Why not?
Example Code:<
As Jared said, you need to use the comma operator to delimit case statements.
The Or you were doing is a bitwise OR, resulting in it being "3". Amusingly, "2 AND 3" would probably have worked for your specific case.
Or