CASE Statement
- Last UpdatedDec 03, 2025
- 1 minute read
With the CASE statement, you can select which of the currently available cases that should be used in this session. These are referenced by their name, and if there are several cases with identical names present, the first one will be selected.
Note: If you only have a single case defined, this statement is optional, otherwise it is required, that means, a single case will automatically be selected.
Syntax
CASE, <case name>;
The case that was named <case name> will be selected for the current session.