I have a array of arrays. The array is 999 elements big and every sub-array has 9999 elements.
At the last part of the code i try to y the sub-arrary 164 to Range("A1:A9999") but it does not work.
Here is part of the code:
MsgBox (UBound(Tiendas(164), 1))
ActiveSheet.Range("B1") = CStr(UBound(Tiendas(164), 1))
ActiveSheet.Range("B2") = Tiendas(164)(33)
Range("A1:A9999") = Tiendas(164)
My MsgBox returns 9999. B1 returns 9999. B2 returns value in element 33. OK. But Range("A1:A9999") = Tiendas(164) is empty.