Aggiungendo un elemento alla fine di un array
vorrei aggiungere un valore alla fine di un array VBA. Come posso farlo? Non sono riuscito a trovare un semplice esempio online. Ecco uno pseudocodice che mostra cosa mi piacerebbe fare.
Public Function toArray(range As range)
Dim arr() As Variant
For Each a In range.Cells
'how to add dynamically the value to end and increase the array?
arr(arr.count) = a.Value 'pseudo code
Next
toArray= Join(arr, ",")
End Function