Tôi muốn thêm một giá trị vào cuối mảng VBA. Tôi có thể làm cái này như thế nào? Tôi đã không thể tìm thấy một ví dụ đơn giản trực tuyến. Đây là một số mã giả cho thấy những gì tôi muốn có thể làm.
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
?