Passing an Array to ParamArray

brncao

Board Regular
Joined
Apr 28, 2015
Messages
147
I'm trying to make a function flexible where it can accept both a ParamArray or an Array. I'm having problems with result2 (getting a mismatch error). What's the proper way to work around this?

VBA Code:
Sub Test()
    Dim arr As Variant, result1 As String, result2 As String
    
    arr = Array("A", "B", "C")
    
    result1 = Test2("A", "B", "C")
    result2 = Test2(arr)
    
    MsgBox result1
    MsgBox result2
End Sub

Function Test2(ParamArray arg() As Variant) As String
    Dim element As Variant
    Dim str As String
    
    For Each element In arg
        str = str & element
    Next
    Test2 = str
End Function
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
result1 = Test2("A", "B", "C")
That means you are passing 3 parameters.

Then, I think it should be like this:
VBA Code:
Sub Test()
  Dim arr As Variant, result1 As String, result2 As String
  
  arr = Array("A", "B", "C")
  
  result1 = Test2(Array("A", "B", "C"))
  result2 = Test2(arr)
  
  MsgBox result1
  MsgBox result2
End Sub

Function Test2(arg As Variant) As String
  Dim element As Variant
  Dim str As String
  
  For Each element In arg
      str = str & element
  Next
  Test2 = str
End Function
 
Upvote 0
@brncao

In your example, your For Each/Next statement in Test2 loops through each element within Arg(). And since you're only passing a single argument, and that argument is an array, element refers to the array you've passed to your function, not an element within the array. Hence the type mismatch error.

To have your function accept any number of arguments, and with different data types, maybe something like this...

VBA Code:
Sub Test()
    Dim arr As Variant, result1 As String, result2 As String, result3 As String, result4 As String
 
    result1 = Test2("A", "B", "C")
    MsgBox result1
 
    arr = Array("A", "B", "C")
    result2 = Test2(arr)
    MsgBox result2
 
    result3 = Test2(Range("A1:A3")) 'where the range contains "A", "B", and "C"
    MsgBox result3
 
    result4 = Test2("A", "B", "C", arr, Range("A1:A3"))
    MsgBox result4
 
End Sub

Function Test2(ParamArray arg() As Variant) As String
    Dim element As Variant
    Dim str As String
    Dim i As Long
 
    str = ""
    For i = LBound(arg) To UBound(arg)
        arg(i) = arg(i)
        If IsArray(arg(i)) Then
            For Each element In arg(i)
                str = str & element
            Next
        Else
            str = str & arg(i)
        End If
    Next i

    Test2 = str
 
End Function

Hope this helps!
 
Last edited:
Upvote 0
Solution

Forum statistics

Threads
1,215,206
Messages
6,123,639
Members
449,111
Latest member
ghennedy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top