J
John Keith
What is the short-hand method to copy a varaint array to a worksheet.
Given a variant array called vaData which is 10 rows x 5 columns
Range("F20:I26").Value = vaData 'Would copy the data to F20:I26
How can this be written dynamically using
Ubound(vaData) and UBound(vaData,2) in place of the cell range reference?
Given a variant array called vaData which is 10 rows x 5 columns
Range("F20:I26").Value = vaData 'Would copy the data to F20:I26
How can this be written dynamically using
Ubound(vaData) and UBound(vaData,2) in place of the cell range reference?