By using vba.booksticle.com you agree to our
cookie policy
, We and our partners operate globally and use cookies, for multiple purposes
Close
948 Steps to 6 Figures by Learning Excel-VBA and Other Skills
Step 175 - 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
Table of Contents
|
Send us your feedback
| © 2025 All Rights Reserved |
Edit