How i can convert this array to an UNLIMITED range array?
Dim multiArray(2, 2) As String
multiArray(0, 0) = "item1InRow1"
multiArray(0, 1) = "item2InRow1"
multiArray(1, 0) = "item1InRow2"
multiArray(1, 1) = "item2InRow2"
I Tryed:
Dim multiArray(,) As String
but i not have succeeded
Use a variable like this. the value of n can be assigned from user/some logic.