Chciałbym dodać wartość na końcu tablicy VBA. W jaki sposób mogę to zrobić? Nie udało mi się znaleźć prostego przykładu online. Oto pseudokod pokazujący, co chciałbym móc zrobić.
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
?