E
ExcelMonkey
Is it possible to create a second dimension to an array that has already had
its first dimension filled with data:
BigArray = Split(StringList, " ")
I want to redimension BigArray so that it now has a second dimension. Or do
I dimension with 2D upfront and then add the outcome to the split to the
first dimension. Can you do that? I have been trying to avoid looping.
Thanks
EM
its first dimension filled with data:
BigArray = Split(StringList, " ")
I want to redimension BigArray so that it now has a second dimension. Or do
I dimension with 2D upfront and then add the outcome to the split to the
first dimension. Can you do that? I have been trying to avoid looping.
Thanks
EM