Search notes:

VBA statement: call

call transfers control to a sub, a function or a procedure in a DLL.
The call keyword is optional when calling a function or sub.i
If it is omited, parentheses are only allowed to enclose exactly one parameter.
If the keyword is present, to enclose (one or more) parameters:
call xyz              ' Only case where parentheses can be omited
call xyz()
call xyz(p1)
call xyz(p1, p2)
call xyz(p1, p2, …)

See also

VBA statements

Index