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
arr = Range.Value
않습니까?