By using expertatexcel.com you agree to our cookie policy, We and our partners operate globally and use cookies, for multiple purposes

Become an Σxpert at Σxcel.com

 


Call routine_name ' call is optional but clearer to new users

You can call a subroutine via the Call command

Call Subroutine_name

Sub Subroutine_name()

' do something

End Sub


You can also leave off the "Call" key and just specify the name of the subroutine.

[Call] Subname([arguments])

if you use the "Call" you must include the parameters in parenthesis