+ Reply to Thread
Results 1 to 6 of 6

Copy range, offset, then paste

Hybrid View

  1. #1
    Registered User
    Join Date
    05-20-2008
    MS-Off Ver
    2003 suite
    Posts
    64

    Copy range, offset, then paste

    Hello,

    I'm trying to copy a range, specified by an offset, then PasteSpecial that range to yet another location specified by an offset.

    This is the code I have so far, which does not attempt to find the range to copy via an offset. But I need it to do that eventually.

        ActiveWorksheet.Range("V3:AE3").Copy
        ActiveRange.Offset(6, 0).Select.PasteSpecial Paste:=xlFormulas
    In this code, it should be copying the range V3:AE3, then pasting the formulas in the same columns, 6 rows below. Right now, I'm getting an error highlighting the first row. I would assume it's just the syntax, but I don't know....

    I've searched upside and down, seen a bunch of different examples, but none seem to do this. (At least to these noob eyes...)

    Thanks!
    Willys
    Last edited by WillysK5; 03-11-2009 at 11:58 AM. Reason: solved

  2. #2
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy range, offset, then paste

    Yes, there's no such thing as Activeworksheet.
    With ActiveSheet.Range("V3:AE3")
        .Copy .Offset(6)
    End With

  3. #3
    Registered User
    Join Date
    05-20-2008
    MS-Off Ver
    2003 suite
    Posts
    64

    Re: Copy range, offset, then paste

    Ha!

    Thank you very much Stephen.

    Can you help me with making the selected range offset from the active cell?

    EDIT: Actually, the copy range can always be "A3:AE3", it's the paste that needs to be offset from the active cell.
    Last edited by WillysK5; 03-10-2009 at 06:20 PM.

  4. #4
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy range, offset, then paste

    My pleasure. Try this.
    Range("V3:AE3").Copy ActiveCell.Offset(6)

  5. #5
    Registered User
    Join Date
    03-11-2009
    Location
    Birmingham, UK
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Copy range, offset, then paste

    I was looking for something very similar but I need to paste special just the values into the offset range. My original range has formulas in. What would the code for that be please?

    thanks


    Bob

  6. #6
    Registered User
    Join Date
    05-20-2008
    MS-Off Ver
    2003 suite
    Posts
    64

    Re: Copy range, offset, then paste

    Thanks again Stephen!

    And bobwilko, I'm going to go way out on a limb and attempt to help. Disclaimer: My username should probably be something like "soopervbanoobarific" or something along those lines.

    Looking around yesterday for a solution to my problem, I found this:

        Sheet1.Range("A1:A200").Copy 
        Sheet1.Range("A1:A200").PasteSpecial xlPasteValues
    Hope that helps, even a little...

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1