I have two arrays that I need to paste into my spreadsheet. Since each destination is a column, I'm using the Transpose command, like so:
Selection = WorksheetFunction.Transpose(arr1)
This works for one of the arrays, but the other gives me an Invalid Procedure Call (Error 5). Both arrays are the same size: arr(1 to 79).
The only difference between the two that I can tell is that all the values in the "good" array are Variant/String, and most of the ones in the "bad" array are Variant/Date.
Should that actually make a difference? If so, is there a way of converting the values in the latter array?
Properly coded the following should work:
Yields:
Without the
TRANSPOSE()
, the code runs, but will not produce correct results.