
End Property This is required to end a Property Let, Property Get, or Property
Set procedure.
End Select This is required to end a Select Case statement.
End Sub This is required to end a Sub statement.
End Type This is required to end a user-defined type definition (Type
statement).
End With This is required to end a With statement.
Note: The End statement stops code execution without triggering
the Unload, QueryUnload, or Terminate event, or any other VBA
code.
Arithmetic Operators
Add (+)
This operator can be used to add numbers (expressions)
together. If one or both expressions are null expressions, the
result will be null. If both expressions are empty, ...