14
14
在数组的末尾添加一个元素
我想在一个VBA数组的末尾添加一个值。如何才能做到这一点?我在网上没有找到一个简单的例子。下面是一些伪代码,显示了我想做的事情。
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