+ Reply to Thread
Results 1 to 11 of 11

Copy specific range from one sheet and paste to next available row of different sheet

Hybrid View

koklok Copy specific range from one... 01-20-2009, 05:14 PM
Leith Ross Hello koklok, Here is the... 01-20-2009, 06:09 PM
koklok Leith, unfortunately it's not... 01-20-2009, 07:04 PM
Leith Ross Hello koklok, This macro... 01-20-2009, 08:51 PM
koklok Leith, Thanks for your... 01-21-2009, 10:11 AM
Leith Ross Hello koklok, This should... 01-21-2009, 11:13 PM
koklok Re: Copy specific range from... 01-26-2009, 10:59 AM
Leith Ross Re: Copy specific range from... 01-26-2009, 11:47 AM
koklok Re: Copy specific range from... 01-28-2009, 05:36 PM
sam_1981 Re: Copy specific range from... 08-28-2012, 04:02 PM
Cutter Re: Copy specific range from... 08-28-2012, 07:27 PM
  1. #1
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello koklok,

    This should fix the problem...
    Sub CopyData()
    
        Worksheets("Step 1").Range("A3:H6").Copy
    
        With Worksheets("Step 2")
          .Cells(Rows.Count, "A").End(xlUp)Offset(1,0).PasteSpecial Paste:=xlPasteValues
        End With
    
    End Sub
    Sincerely,
    Leith Ross

  2. #2
    Registered User
    Join Date
    10-08-2008
    Location
    Hallandale
    Posts
    44

    Re: Copy specific range from one sheet and paste to next available row of different s

    Unfortunately it's still not working

  3. #3
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Copy specific range from one sheet and paste to next available row of different s

    Hello koklok,

    When I run the macro below, the underscore is copied. Can you be more specific about the problem?
    Sub CopyData()
    
        Worksheets("Step 1").Range("A3:H6").Copy
        Worksheets("Step 2").Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
        
    End Sub
    Sincerely,
    Leith Ross

  4. #4
    Registered User
    Join Date
    10-08-2008
    Location
    Hallandale
    Posts
    44

    Re: Copy specific range from one sheet and paste to next available row of different s

    Ok, Leith

    I see you made a little change and it's working now I appreciate your help.

    Thanks

+ 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