I need to copy & save the initial data in a 9x9 matrix.
If the users calculations are correct, the mvArray data will be
discarded, or another sub will be run to reset the range with the
initial data.
Sub fillArray
Dim mvarray As Variant
Range("A1:I9").Select
mvarray = Range("A1:I9").Value
End Sub
My question is:
I have experimented with various settings for Public or Private but
cannot get it to save the data once the sub has finished running.
How can I retain the mvArray data?