L
Legacy 143009
Guest
I wonder if is there a syntax for spilling out a split function among the second dimension of an array:
I expect the text will be spilled as myArr(i, 0)=A and myArr(i, 1)=B since the dimension lengths was predefined.
VBA Code:
Redim myArr(i, 1)
myArr(i, 0) = Split("A,B", ",")
I expect the text will be spilled as myArr(i, 0)=A and myArr(i, 1)=B since the dimension lengths was predefined.