Name
Select Case Statement
Syntax
Select Casetestexpression[Caseexpressionlist[statements-n]] ... [Case Else [elsestatements]] End Select
-
testexpression Use: Required
Data Subtype: Any
Any numeric or string expression whose value determines which block of code is executed.
-
expressionlist Use: Required
Data Subtype: Any
Comma-delimited list of expressions to compare values with
testexpression.-
statements-n Use: Optional
Program statements to execute if a match is found between any section of
expressionlistandtestexpression.-
elsestatements Use: Optional
Program statements to execute if a match between
testexpressionand anyexpressionlistcan’t be found.
Description
Allows for conditional execution of a block of code, typically out of
three or more code blocks, based on some condition. Use the
Select
Case statement as an
alternative to complex nested If...Then...Else
statements.
Rules at a Glance
Any number of
Caseclauses can be included in theSelectCasestatement.If a match between
testexpressionand any part ofexpressionlistis found, the program statements following the matchedexpressionlistare executed. When program execution encounters the nextCaseclause or theEndSelectclause, execution continues with the statement immediately following theEndSelectclause.Both
expressionlistandtestexpressionmust be a valid expression that can consist of one or more of the following: a literal value, a variable, an arithmetic or comparison operator, or the value returned by an intrinsic ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access