Range.Paste - Object doesn't support this property or method

前端 未结 4 674
再見小時候
再見小時候 2021-01-06 06:14

I\'ve got a very simple procedure that copies a range from one workbook and pastes it into another; the issue is, I\'m getting the error in the title on the paste

相关标签:
4条回答
  • 2021-01-06 06:26

    Other answers have provided ways to make it work, but don't explain what's going on.

    y.Sheets("DTR")
    

    That should really be y.Worksheets("DTR"), because the Sheets collection can contain non-worksheet items, such as charts for example.

    Regardless, both the Sheets and the Worksheets collections' Item property (which is the default property of any collection type) yields an Object, which makes every chained member call that follows, a late-bound call.

    And you don't get IntelliSense on late-bound calls, since these calls get resolved at run-time, by definition: you can call anything on an Object, and the code will happily compile:

    Sub Test()
        Debug.Print ThisWorkbook.Worksheets(1).Whatever
    End Sub
    

    Same as:

    Sub Test()
        Debug.Print ThisWorkbook.Worksheets.Item(1).Whatever
    End Sub
    

    At run-time, if VBA can't find the Whatever member on the retrieved object's interface, it raises run-time error 438, "Object doesn't support this property or method".

    Late-binding is powerful and very useful, but it also incurs overhead that you don't necessarily need.

    Instead of working off an Object, you can cast the returned object reference to a specific type when you know what that type is - in this case we know we're dealing with a Worksheet object:

    Dim target As Worksheet
    Set target = y.Worksheets("DTR")
    

    Now that you have an early-bound Worksheet object reference, IntelliSense can guide you:

    And if you try to call a bogus member (e.g. target.Whatever), you'll get a compile-time error instead of a run-time error.

    When you do this:

    target.[A1].Paste
    

    You're using late-binding again, to retrieve the A1 range. Instead, call the Worksheet.Range property getter to retrieve an early-bound Range object - and from there you'll see that when you type .paste there is no such thing as a Paste method in a Range object:

    And you get autocompletion and tooltips for everything as you type it:

    0 讨论(0)
  • 2021-01-06 06:29

    Change it to y.Sheets("DTR").[a1].PasteSpecial

    Paste does not work on ranges, to paste a range you have to use PasteSpecial. I believe by default it does everything but you can specify quite a bit, see here

    0 讨论(0)
  • 2021-01-06 06:31

    The problem with your original code was two-fold.

    1. The Cells.Delete statement appeared after the copy, but a delete action clears the clipboard.

    2. The Paste method is a member of the Sheet object, not the Range object.

    Adjusting your code, that becomes:

    y.Sheets("DTR").Cells.Delete
    x.Sheets(1).Range("A1").CurrentRegion.Copy
    y.Sheets("DTR").Paste y.Sheets("DTR").[a1]
    
    0 讨论(0)
  • 2021-01-06 06:44

    You can Copy and Paste Ranges between sheets (and workbooks) using 1 line of code, just replace your code with the line below:

    x.Sheets(1).Range("A1").CurrentRegion.Copy y.Sheets("DTR").[a1] 
    

    If you want to use the PasteSpecial method, you got to do it in 2 lines, but you need to add a parameter after the PasteSpecial , like xlValues, etc.

    x.Sheets(1).Range("A1").CurrentRegion.Copy
    y.Sheets("DTR").[a1].PasteSpecial xlValues
    
    0 讨论(0)
提交回复
热议问题