I have a multidimensional array that is setup to hold a "identity number" as the first part of the array, and then a set of values as the second part. Ie
Dim holder(8,2) as integer
I'm trying to make holder(1) equal to a already defined array, as it is to many different values to write Instead of
Holer(1,1) = 1
Holder(1,2) =2
Etc
Do this
Holder(1) = Array(1,1,1)
Normally this wouldn't be a issue but I have multiple arrays
Ie
Holder(1) = Array(1,1,1)
Holder(2) = Array2(1,1,1)
How do I do this?
Another way to word it is put the values of array a into the holder array 1.