我正在尝试删除LastRow
变量之前的所有空白行。下面你会找到我的样品。可行的方法似乎是一种严肃的解决方法,我相信它可能会更短/更快,我只是不知道如何去做。
作品 - 严肃的解决方法
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 1 to LastRow
If Range("A" & i).value = "" then
Range("A" & i).value = "xxxxx"
End if
Next i
For i = 1 to LastRow
If Range("A" & i).value = "xxxxx" then
Range("A" & i).Delete
i = i - 1
End if
Next i
无限循环
LastRow = Cells(Rows.Count, "A").End(xlUp).Row
For i = 1 to LastRow
If Range("A" & i).value = "" then
Range("A" & i).Delete
i = i - 1
End if
Next i