Syntax
| Select Case expr
[Case caseexpr[, ...]
statements]...
[Case Else
statements]
End Select
| ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Description
| Select the appropriate case by comparing the expr with each of the caseexprs. Select the Case Else part if no caseexpr matches. (If the Case Else is omitted then skip the entire Select...End Select block.)
| ||||||||||||||||
See Also
| |||||||||||||||||
Example
|
|