L
Lance Roberts
Seems like I alway have trouble when dealing with disjoint ranges.
This time I'm trying to do a simple copy of a matrix (2-D array) into a
disjoint range.
The dimensions of the disjoint range and the array are the same, but I get
gobbledygook (without pattern) when I do the assignment.
The first line actually copies fine, but then the other lines that are
disjoint from the first, won't work.
Dim matrix As Variant
'code to fill matrix
Range("testrange") = matrix
This time I'm trying to do a simple copy of a matrix (2-D array) into a
disjoint range.
The dimensions of the disjoint range and the array are the same, but I get
gobbledygook (without pattern) when I do the assignment.
The first line actually copies fine, but then the other lines that are
disjoint from the first, won't work.
Dim matrix As Variant
'code to fill matrix
Range("testrange") = matrix