G Guest May 8, 2007 #2 Sub abc() Set MyRange = Range("A1:J10") MyRange.Copy Destination:=Range("A20") End Sub
A Alan Beban May 8, 2007 #4 You can if the array is originally declared as a dynamic array. E.g., Dim MyArray() ReDim MyArray(1 to 10, 1 to 10) MyArray = Range("A1:J10") Alan Beban
You can if the array is originally declared as a dynamic array. E.g., Dim MyArray() ReDim MyArray(1 to 10, 1 to 10) MyArray = Range("A1:J10") Alan Beban
G Guest May 8, 2007 #5 Thx Alan, this works. Is the converse possible i.e.: to write from an array into a worksheet range without using a for..next loop ?
Thx Alan, this works. Is the converse possible i.e.: to write from an array into a worksheet range without using a for..next loop ?