如何删除excel删不尽的空行
2个回答
展开全部
有一种运行宏的办法,自动删除空行:
代码:
Sub 去掉表空行()
Dim i As Long
i = 2
Do While i <= Range("a65536").End(xlUp).Row
If WorksheetFunction.CountA(Rows(i)) = 0 Then
Rows(i).EntireRow.Delete
i = i - 1
GoTo l1
End If
If Left(Cells(i, 1), 1) = " " Then
庆孝Rows(i).EntireRow.Delete
i = i - 1
GoTo l1
End If
信差唯
l1: i = i + 1
滑培 Loop
Cells.Select
Cells.EntireRow.AutoFit
Cells.EntireColumn.AutoFit
End Sub
这个能去除某一行啥都没有,或者有空格的行。
有一个弊端,就是第一行如果是空行的话,不会删除的。这是我为了打印资料不浪费纸做的。如果对你有帮助,请采纳。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |