View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.misc
Chip Pearson
 
Posts: n/a
Default what is an argument?

An argument is a value passed to another procedure. For example
in the VBA code


Sub AAA()
BBB X, Y
End Sub

Sub BBB(X as Integer, Y as Integer)
' do something
End Sub

Here, X and Y are arguments to function BBB.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"mcockrel" wrote in message
...
Can somebody please tell me what an argument is in excel