การวน loop ของ array
Posted: Tue Sep 03, 2013 11:33 pm
Code: Select all
Dim CostCenter() As String
Dim n, ccn As Integer
For n = 0 To UBound(CostCenter)
ccn = ccn + 1
ReDim Preserve CostCenter(0 To (UBound(CostCenter) + 1))
CostCenter(UBound(CostCenter)) = ActiveCell.Value
Next
แต่เกิด Run time error '6' Overflow ที่ For ... Next โดยขนาดของ array บวมมากๆ
ลองนำ For .... Next ออก ก็ไม่มี error ครับ
ต้องเพิ่ม code อย่างไรครับ ถึงจะแก้ Oveflow ได้ครับ