I want to insert data in Excel. As an datasource I have a multidimensional array: Say, I have this
dim myArray(5, 3)
for row = 0 to 4
for col = 0 to 2
myArray(row, col) = row * col
next
next
How can I insert these array in excel at cell index [0, 0]
Result
A B C
1 0 0 0
2 0 1 2
3 0 2 4
4 0 3 6
5 0 4 8
