Eu gostaria de adicionar um valor ao final de uma matriz VBA. Como posso fazer isso? Não consegui encontrar um exemplo simples online. Aqui estão alguns pseudocódigo mostrando o que eu gostaria de poder fazer.
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
?