VBA variables will lose thier value when they pass out of scope (like when you close a workbook) so they are not suitable for backing up data. (Just in case that is what you meant).
For quickly loading arrays from spreadsheet ranges. Variant arrays can be used
Dim myArray as Variant
myArray = Range("A1:C100").Value
will set myArray to a 2-Dimensional 100 X 3 array of the values in A1:C100
Range("AA1:AC100").Value = myArray
will put the values of myArray in AA1:AC100.
If the size of myArray is not certain
Range("AA1").Resize(UBound(myArray,1),Ubound(myArray,2)).Value = myArray
will adjust the size of the range to match the size of myArray.
I hope that helped.
Bookmarks