I'm glad it helped.
But a case structure IS an If statement. Or, even a "Case Select" statement.
IF the value is "A", run "A"'s code. IF the value is "B", run "B"'s code, IF "C", run "C" 's, .....
IF the value is True, run the true case. IF the value is False, run the false case.
Just don't convolute case structures and boolean comparisons to the point that they step all over each other.