How to pass an array to a function in VBA?

前端 未结 2 1569
挽巷
挽巷 2021-02-02 07:42

I am trying to write a function that accepts an array as an argument. The array can have any number of elements.

Function processArr(Arr() As Variant) As String
         


        
2条回答
  •  抹茶落季
    2021-02-02 08:33

    This seems unnecessary, but VBA is a strange place. If you declare an array variable, then set it using Array() then pass the variable into your function, VBA will be happy.

    Sub test()
        Dim fString As String
        Dim arr() As Variant
        arr = Array("foo", "bar")
        fString = processArr(arr)
    End Sub
    

    Also your function processArr() could be written as:

    Function processArr(arr() As Variant) As String
        processArr = Replace(Join(arr()), " ", "")
    End Function
    

    If you are into the whole brevity thing.

提交回复
热议问题