English 中文(简体)
脚本复制工作表数据, 并粘贴数据, 但是粘贴
原标题:Script in where it copies a sheet s data, and pastes it, but over pastes
  • 时间:2012-05-23 18:30:48
  •  标签:
  • excel
  • vba

这是我的剧本

Sub Update_OOR()

    Dim wsTNO As Worksheet
    Dim wsTND As Worksheet
    Dim wsTNA As Worksheet
    Dim lastrow As Long, fstcell As Long

    Set wsTNO = Sheets("Tel-Nexx OOR")
    Set wsTND = Sheets("Tel-Nexx Data")
    Set wsTNA = Sheets("Tel-Nexx Archive")

    With Application
        .ScreenUpdating = False
        .DisplayAlerts = False
        .EnableEvents = False
    End With

    With Intersect(wsTNO.UsedRange, wsTNO.Columns("S"))
        .AutoFilter 1, "<>Same"
        With Intersect(.Offset(2).EntireRow, .Parent.Range("B:P"))
            .Copy wsTNA.Cells(Rows.Count, "B").End(xlUp).Offset(1)
            .EntireRow.Delete
        End With
        .AutoFilter
    End With


 Blow away rows that are useless
    lastrow = wsTND.Range("A2").End(xlDown).Row
    wsTND.Range("O1:P1").Copy wsTND.Range("O2:P" & lastrow)
    wsTND.UsedRange.Copy Sheets.Add.Range("A1")

    With Intersect(ActiveSheet.UsedRange, ActiveSheet.Columns("P"))
        ActiveSheet.Range("O:P").Calculate
        .AutoFilter 1, "<>Different"
        .SpecialCells(xlCellTypeVisible).EntireRow.Delete
    End With

    With ActiveSheet
        lastrow = wsTND.Range("A2").End(xlDown).Row
        Intersect(.UsedRange, .Range("A2:M" & lastrow)).Copy wsTNO.Cells(Rows.Count, "B").End(xlUp).Offset(1)
        .Delete
    End With

    With wsTNO
        lastrow = wsTNO.Cells(Rows.Count, "B").End(xlUp).Row
        wsTNO.Range("T1:AD1").Copy
        wsTNO.Range("B3:N" & lastrow).PasteSpecial xlPasteFormats
        lastrow = wsTNO.Cells(Rows.Count, "R").End(xlUp).Row
        fstcell = wsTNO.Cells(Rows.Count, "N").End(xlUp).Row
        wsTNO.Range("AE1:AI1").Copy wsTNO.Range("O" & fstcell & ":S" & lastrow).Offset(1, 0)
    End With

    With Application
        .ScreenUpdating = True
        .DisplayAlerts = True
        .EnableEvents = True
    End With

End Sub

从技术上讲,到这里为止,它的运作非常完美:

With wsTNO
        lastrow = wsTNO.Cells(Rows.Count, "B").End(xlUp).Row
        wsTNO.Range("T1:AD1").Copy
        wsTNO.Range("B3:N" & lastrow).PasteSpecial xlPasteFormats
        lastrow = wsTNO.Cells(Rows.Count, "R").End(xlUp).Row
        fstcell = wsTNO.Cells(Rows.Count, "N").End(xlUp).Row
        wsTNO.Range("AE1:AI1").Copy wsTNO.Range("O" & fstcell & ":S" & lastrow).Offset(1, 0)
End With

现在,从技术上讲,这个部分中的一切工作都是正确的, 但代码中的最后一行, 它会正确删除所有内容, 然后它就会超越了一步。 我想知道为什么。 如果我把它除掉的话, 它就会在O到S的上面的单元格里 。 我需要知道第一个和最后一个单元格, 因为数据需要只写到特定的单元格范围 。

如果有比较容易的办法这样做的话,如果有人能告诉我,如果有人不能告诉我,那么有人能告诉我如何解决这个问题吗?

谢谢

随函附上工作手册。

< a href=" "http://dl.dropbox.com/u/3327208/Excel/First%26LastRows.xlsm" rel=“no follow" >http://dl.dropbox.com/u/3327208/Excel/First%26LastRows.xlsm

最佳回答

在您的第二代码中添加 + 1 到

 lastrow = wsTNO.Cells(Rows.Count, "R").End(xlUp).Row

所以,你有

 lastrow = wsTNO.Cells(Rows.Count, "R").End(xlUp).Row + 1

前者给予您第二排, 也就是您页眉行。 您想要的是第三排, 也就是紧随页眉后面的第三行 。

< 强度 > 更新日期: 显示如何在未来 < /强度 > 测试

选择 < / strong > 方法通常被皱眉, 可用于测试/ 调试。 我运行了

wsTNO.Range("O" & fstcell & ":S" & lastrow).Select

在我设定最后一行和 Fstcell 以找到设定的范围后, 立即窗口中的窗口中。 因此我知道您不想复制信头。 您可以从那里找到驱动该区域并相应调整的内容 。

问题回答

暂无回答




相关问题
import of excel in SQL imports NULL lines

I have a stored procedure that imports differently formatted workbooks into a database table, does work on them then drops the table. Here is the populating query. SELECT IDENTITY(INT,1,1) AS ID ...

Connecting to Oracle 10g with ODBC from Excel VBA

The following code works. the connection opens fine but recordset.recordCount always returns -1 when there is data in the table. ANd If I try to call any methods/properties on recordset it crashes ...

Excel date to Unix timestamp

Does anyone know how to convert an Excel date to a correct Unix timestamp?

C# GemBox Excel Import Error

I am trying to import an excel file into a data table using GemBox and I keep getting this error: Invalid data value when extracting to DataTable at SourceRowIndex: 1, and SourceColumnIndex: 1. As ...

Importing from excel "applications" using SSIS

I am looking for any tips or resources on importing from excel into a SQL database, but specifically when the information is NOT in column and row format. I am currently doing some pre-development ...

热门标签