Enable JavaScript in the browser to display LibreOfficeDev Help pages.
\<bookmark_value\>Stop statement\</bookmark_value\>
Stop Statement
Stops the execution of the Basic program.

Sub ExampleStop
Dim iVar As Single
iVar = 36
Stop
MsgBox Sqr(iVar)
End Sub