0% found this document useful (0 votes)
3 views

VBA - Sub Procedure

Uploaded by

jaspinders507
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

VBA - Sub Procedure

Uploaded by

jaspinders507
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Page 1 of 2

VBA - Sub Procedure


Sub Procedures are similar to functions, however there are a few differences.

Sub procedures DO NOT Return a value while functions may or may not return a value.

Sub procedures CAN be called without a call keyword.


Sub procedures are always enclosed within Sub and End Sub statements.

Example

Sub Area(x As Double, y As Double)


MsgBox x * y
End Sub

Calling Procedures
To invoke a Procedure somewhere in the script, you can make a call from a function. We will not be able
to use the same way as that of a function as sub procedure WILL NOT return a value.

Function findArea(Length As Double, Width As Variant)


area Length, Width ' To Calculate Area 'area' sub proc is called
End Function

Now you will be able to call the function only but not the sub procedure as shown in the following
screenshot.
Page 2 of 2

The area is calculated and shown only in the Message box.

The result cell displays ZERO as the area value is NOT returned from the function. In short, you cannot
make a direct call to a sub procedure from the excel worksheet.

You might also like