Vorrei aggiungere un valore alla fine di un array VBA. Come posso fare questo? Non sono riuscito a trovare un semplice esempio online. Ecco alcuni pseudocodici che mostrano cosa vorrei poter 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
arr = Range.Value
?