I have a 2 dimensional array (necessary for earlier in the code) and want to output all of the values into a column in excel.
As for the location I want it to be one to the right of a named column range. Having had previous array values in the other columns.
Is there any way to output all of the values into a column from a 2d array or do I need to turn it into a 1d array first?
IE, in a worksheet-
Header-----------Header 2
arrayItem(0,0)--arrayitem(0,0)
arrayItem(0,1)--arrayItem(1,0)
arrayItem(1,0)--arrayItem(1,1)
As for the location I want it to be one to the right of a named column range. Having had previous array values in the other columns.
Is there any way to output all of the values into a column from a 2d array or do I need to turn it into a 1d array first?
IE, in a worksheet-
Header-----------Header 2
arrayItem(0,0)--arrayitem(0,0)
arrayItem(0,1)--arrayItem(1,0)
arrayItem(1,0)--arrayItem(1,1)