在Excel中删除空行刹车

时间:2017-07-20 12:24:45

标签: excel

如何删除Excel文档中的空行?

我的数据是:

enter image description here

我想得到这些结果:

enter image description here

提前致谢。

2 个答案:

答案 0 :(得分:0)

试试这个:

  1. 突出显示您的数据
  2. 转到" Home"标签。
  3. 点击"查找并选择" (一直到右边)
  4. 点击"转到特殊"
  5. 选择"空白"并点击"确定"
  6. 右键单击,删除行

答案 1 :(得分:0)

如果你想快速做到这一点,你可以

1.选择包含要删除的空白行的范围。

2.点击主页>找到&选择>去特别。

enter image description here

3.在“转到特殊”对话框中,选中“空白”选项。

enter image description here

  1. 然后单击“确定”,突出显示所有空白行。然后点击主页>删除>删除工作表行,
  2. 你已经完成了

    快速VBA功能也可以处理

    Sub DeleteBlankRows()
    Dim Rng As Range
    Dim WorkRng As Range
    On Error Resume Next
    xTitleId = "Remove blank rows from excel"
    Set WorkRng = Application.Selection
    Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
    xRows = WorkRng.Rows.Count
    Application.ScreenUpdating = False
    For i = xRows To 1 Step -1
        If Application.WorksheetFunction.CountA(WorkRng.Rows(i)) = 0 Then
            WorkRng.Rows(i).EntireRow.Delete XlDeleteShiftDirection.xlShiftUp
        End If
    Next
    Application.ScreenUpdating = True
    End Sub
    

    此外,如果您想让您的工作更轻松,您可以尝试使用kutools,然后只需点击一下即可删除空白行https://www.extendoffice.com/download/kutools-for-excel.html

    enter image description here