Hi, I'm trying to get the values of MyArray coded like
Dim MyArray As Variant, dim1 as Integer, dim2 as Integer
ReDim MyArray(1, 1)
MyArray = Array(Array(1, 2, 3), Array(4, 5, 6))
dim1 = UBound(MyArray,1)
dim2 = UBound(MyArray, 2)
Is this evan possible? Thankfull for all good ideas
Dim MyArray As Variant, dim1 as Integer, dim2 as Integer
ReDim MyArray(1, 1)
MyArray = Array(Array(1, 2, 3), Array(4, 5, 6))
dim1 = UBound(MyArray,1)
dim2 = UBound(MyArray, 2)
Is this evan possible? Thankfull for all good ideas