Data Arrays into Ranges?????
Posted by Ron Dionne on October 23, 2001 1:13 PM
I have data stored in arrays that I'd like to paste
into a worksheet. If I try to use this format:
Set corrWS = newWB.Worksheets("Correlation")
corrWS.Range("A1:A44") = ParamSdevArray
All the cells in the range get filled with
ParamSdevArray(0). I'd hate to have to cycle thru
each array element and fill the cells individually
if I don't have to. Is there a better way?