j = 2
Do While PA.Cells(j, 1) <> ""
Set n = (Cells(j, 50).End(xlDown).Rows.Count) - 2
If Cells(j, 50) <> "" Then
Range(Cells(j, 50), Cells(j, 145)).Select
Selection.AutoFill Destination:=Range(Cells(j, 50), Cells(j + n, 145))
End If
j = j + 1
Loop
我在“Set n = ...”
行上收到了一个需要错误的对象我不知道如何解决这个问题。如果“Set n =”值需要在循环之外,那么当每个j的n不同时,如何更改n值?