Hi there.
I've googled this question several times, but I can't find something that works.
I want to declare an array of arrays (arrArr) of unspecified length. Actually, I work with Excel: if the sheet exists, fetch its array and store it in the array of arrays.
I've declared this arrArr like this, and the program basically works this way:
dim arrArr as Variant
if sheetIsFound then
sheetsFound = sheetsFound + 1
arrArr(sheetsFound) = arrayOfTheSheet
end if
but it doesn't work: debug says that the array is empty. What's wrong in my (ill)logic ?
Thanks