You created a SelectEnd Select construct, but included a Case clause that contains one or more values along with a Case Else statement. The Case Else statement (the fall-through case) must appear on its own line. The following demonstrates the correct usage of the SelectEnd Select construct.

CopyCode imageCopy Code
Select Casetestexpression
   [Caseexpressionlist-n
      [statements-n]] . . .
   [Case Elseexpressionlist-n
      [elsestatements-n]]
End Select

To correct this error

  • Create a new line for the Case Else statement.

See Also