View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein \(MVP - VB\)[_1320_] Rick Rothstein \(MVP - VB\)[_1320_] is offline
external usenet poster
 
Posts: 1
Default Newb VBA question

If it is a Sub, then use Exit Sub.

If it is a function, then use Exit Function.

Rick


wrote in message
...
How do you return from a sub early? I have code that looks like

If x < 5 Then
Return
End If

I get a Return without GoSub error. Coming from a C++ background so I
have no idea what is going on. Thanks.