ฉันต้องการเพิ่มค่าในตอนท้ายของอาร์เรย์ 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
?