June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
3
Task/Function-definition/VBA/function-definition-1.vba
Normal file
3
Task/Function-definition/VBA/function-definition-1.vba
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Function Multiply(lngMcand As Long, lngMplier As Long) As Long
|
||||
Multiply = lngMcand * lngMplier
|
||||
End Function
|
||||
4
Task/Function-definition/VBA/function-definition-2.vba
Normal file
4
Task/Function-definition/VBA/function-definition-2.vba
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Sub Main()
|
||||
Dim Result As Long
|
||||
Result = Multiply(564231, 897)
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue