Y¹w³]ªº¤UȬ° 0¡A«h Option Base ³¯z¦¡¬O¤£»Ýnªº¡CY»Ýn¨Ï¥Î®É¡A¦¹³¯z¦¡¥²¶·¥X²{¦b¼Ò²Õ¤¤¡A¨Ã¥B¦b¥ô¦óµ{§Ç¤§«e¡COption Base ¶È¯à¦b¼Ò²ÕùØ¥X²{¤@¦¸¡A¦Ó¥B¥²¶·¦b§t¦³ºû¼Æªº°}¦C«Å§i¤§«e¡C
Option Explicit
Sub TEST1()
Dim arr, i As Integer
With Sheets("qÁʳæ")
For i = 10 To Application.CountA(.[A10:A16]) + 9
arr = Array(.[L4], .[N4], .[L7].Text, .Cells(i, "A"), .Cells(i, "C"), .Cells(i, "E"), .Cells(i, "H"), .Cells(i, "I"), .Cells(i, "J"), .Cells(i, "L"))
Sheets("qÁÊ°O¿ý").Cells([A65536].End(3).Row + 1, 1).Resize(1, UBound(arr)) = arr
Next
End With
End Sub