Differences Between Parameters and Arguments
Written by kazamraza
no comments
Classified in : Visual Basic for Application (VBA), Macros, Miscellaneous
These are used interchangeably, however,A parameter is a variable in a method definition. When a method is called, the arguments are the data you pass into the method's parameters. When a variable is passed to a subroutine or function it is called an argument. The value used in place of the parameter when we make the procedure call is called an argument.
Example
Sub SalesTax(amount)
SalesTax = amount * 0.175
End Sub