I am passing alot of data to a VBA routine as a delimited string, then I parse it into an array, and finally enter the data into a worksheet.
The string may parse into an array of 1000 to 2000 rows and 100 columns.
I realize that I could move the data from the array into the worksheet through a couple of for loops such as:
for row = 1 to 2000
for col = 1 to 100
worksheets("Sheet1").range("A1:A1").cells(row,col).value = BIGdataArray(row,col)
next col
next row
But I was wondering if there is a quicker more efficient way of moving the data from an array to the worksheet.
The string may parse into an array of 1000 to 2000 rows and 100 columns.
I realize that I could move the data from the array into the worksheet through a couple of for loops such as:
for row = 1 to 2000
for col = 1 to 100
worksheets("Sheet1").range("A1:A1").cells(row,col).value = BIGdataArray(row,col)
next col
next row
But I was wondering if there is a quicker more efficient way of moving the data from an array to the worksheet.