+ Reply to Thread
Results 1 to 6 of 6

Paste in next empty line

Hybrid View

  1. #1
    Registered User
    Join Date
    08-25-2008
    Location
    Iceland
    Posts
    19

    Re: Paste in next empty line

    Hi again

    I need to paste these number in transpose?

    David

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Paste in next empty line

    Perhaps using Copy / Paste route (formatting etc...)

    With Sheets("Sheet1")
        .Range(.Cells(1,"A"),.Cells(.Rows.Count,"A").End(xlUp)).Copy
        With Sheets("Sheet2")
            .Cells(Rows.Count,"A").End(xlUp).Offset(1).PasteSpecial Transpose:=True
        End With
    End With
    Application.CutCopyMode = False
    Last edited by DonkeyOte; 05-05-2010 at 07:34 AM. Reason: modified the 2nd With

  3. #3
    Registered User
    Join Date
    08-25-2008
    Location
    Iceland
    Posts
    19

    Re: Paste in next empty line

    thanx, that works for me.

    David

+ 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