What's difference between two declarations Dim Array_1() as Variant
and Dim Array_2 as Variant
in VBA ?
If I then create arrays using above declarations :
Array_1 = Range("A1:A10")
Array_2 = Range("A1:A10")
in locals windows I see different descriptions for Array_1 and Array_2. I seems that Array_2 contain values of undefined type. Could I ReDim
Array_2
?