vba variable number of arguments

The solution for “vba variable number of arguments” can be found here. The following code will assist you in solving the problem.

Sub Test(ByVal pArg As String, ParamArray pParameters())
‘ Can’t be combined with ‘Optional’ arguments
Dim sValues
For Each sValues In pParameters
Debug.print sValues
Next
End SUb

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts