Vba excel宏选择多行

Vba excel宏选择多行,vba,excel,Vba,Excel,我有excel宏来选择要剪切并粘贴到下一张图纸的行。现在,我想一次选择多行来剪切并粘贴到下一页,然后返回到前一页,删除被剪切的空白行。我对单行剪切和粘贴的代码如下: Sub CutPasteRows() Dim iLastRow As Integer 'select the first cell to intiate script txtRowNum = Selection.Row 'select the row Rows(txtRowNum).EntireRo

我有excel宏来选择要剪切并粘贴到下一张图纸的行。现在,我想一次选择多行来剪切并粘贴到下一页,然后返回到前一页,删除被剪切的空白行。我对单行剪切和粘贴的代码如下:

Sub CutPasteRows()
Dim iLastRow As Integer


   'select the first cell to intiate script
    txtRowNum = Selection.Row
    'select the row
    Rows(txtRowNum).EntireRow.Select
    Selection.Cut

    'if the active worksheet is the last one (no next worksheet), display error.
    If ActiveSheet.Index = Worksheets.Count Then
       MsgBox ("There are no next worksheet")
    Else
        ActiveSheet.Next.Select
        iLastRow = ActiveSheet.UsedRange.Rows.Count

        'if the workshet is blank, start with the first row. Otherwise, add 1 to the last row
        If Cells(1, 1).Value = "" And iLastRow = 1 Then
            iLastRow = 1
        Else
            iLastRow = iLastRow + 1
        End If

        'Paste row
        Rows(iLastRow).EntireRow.Select
        ActiveSheet.Paste

        'Go back to the last worksheet
        ActiveSheet.Previous.Select
        Rows(txtRowNum).EntireRow.Select
        Selection.Delete
    End If
End Sub
感谢您的帮助


谢谢

您只需合并所需的行即可

像这样:

Set workingRange = Application.Union(workingRange, newRange)

当然,这意味着使用范围对象而不是行号。

如果一次选择多行,Selection属性将返回一个范围对象。使用此范围对象,您应该能够将选定行剪切并粘贴到下一个工作表,然后从上一个工作表中删除它们

我对您的代码进行了快速更改,我认为这会让您走上正确的道路:

Sub CutPasteRows()
 Dim iLastRow As Integer

 'Cut entire selection'
 Selection.Cut

 'if the active worksheet is the last one (no next worksheet), display error.'
  If ActiveSheet.Index = Worksheets.Count Then
   MsgBox ("There are no next worksheet")
  Else
    ActiveSheet.Next.Select
    iLastRow = ActiveSheet.UsedRange.Rows.Count

  'if the worksheet is blank, start with the first row. Otherwise, add 1 to the last row'
    If Cells(1, 1).Value = "" And iLastRow = 1 Then
        iLastRow = 1
    Else
        iLastRow = iLastRow + 1
    End If

    'Paste row'
    Rows(iLastRow).EntireRow.Select
    ActiveSheet.Paste

    'Go back to the last worksheet and delete selection'
    ActiveSheet.Previous.Select
    Selection.Delete
End If


它做错了什么?错误消息或问题是什么?