I have an array in VBA that I would like to append, and it is the item of a dictionary. It is assigned like this:
dict.Add Key:=arr(i, 1), Item:=Array(arr(i, 2), arr(i, 3), arr(i, 4), arr(i, 5), arr(i, 6), arr(i, 7), arr(i, 8))
However I understand that arrays in VBA are very static, and can't simply be appended. Is there a way for me to unpack the elements of the array, and then create a new array (with the new item) and assign it back as the dictionary's item?
Any help is appreciated.