Variant Argument not being passed properly

Status
Not open for further replies.

Mackeral

Board Regular
Joined
Mar 7, 2015
Messages
248
Office Version
  1. 365
Platform
  1. Windows
VBA Code:
Function Var_Add(Variant_Array() As Variant, ParamArray LINES() As Variant)  
 
    Knt = UBound(Variant_Array)   '<-- This is always set to 0

    For Each Line In LINES
        Knt = Knt + 1
        ReDim Preserve Variant_Array(Knt)
        Variant_Array(Knt) = Line
    Next Line   
    Var_Add = Variant_Array   
End Function ' Var_Add

Input Data
Variant_Array(1) = "Line 1"
Variant_Array(2) = "Line 2"

Called: Call Var_Add(Varient_Array, "Line 3", "Line4")

The problem is that "Variant_Array" does not contain anything.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Status
Not open for further replies.

Forum statistics

Threads
1,221,446
Messages
6,159,917
Members
451,603
Latest member
SWahl

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