Selection.AutoFill Destination:=Range(Cells(8, 3), Cells(8, 28)),
Type:=xlFillDefault
這是我用Cells 寫 AutoFill 就編譯錯誤。
可是我這樣寫
SN = "C" + CStr(7 + 2 * i) + ":AB" + CStr(7 + 2 * i)
Selection.AutoFill Destination:=Range(SN), Type:=xlFillDefault
就可以編譯,請問怎樣用Cells 寫AutoFill?