+ Reply to Thread
Results 1 to 3 of 3

Is this possible?

  1. #1
    Registered User
    Join Date
    06-27-2005
    Posts
    55

    Red face Is this possible?

    I have information in one row, 39 columns, Sheet 1, I want to copy that info over to Sheet 2, and use 3 rows, 12 columns.
    I used EasyFilter to filter my data.
    Can & how do I do this?

  2. #2
    L. Howard Kittle
    Guest

    Re: Is this possible?

    Hi CBrausa

    One way, however I used 13 column to get all 39 entries.

    Sub CopyIt()
    Range("A1").Resize(1, 13).Copy Sheets("Sheet2"). _
    Range("A100").End(xlUp).Offset(1, 0)
    Range("A1").Offset(0, 13).Resize(1, 13).Copy _
    Sheets("Sheet2").Range("A100").End(xlUp).Offset(1, 0)
    Range("A1").Offset(0, 26).Resize(1, 13).Copy _
    Sheets("Sheet2").Range("A100").End(xlUp).Offset(1, 0)
    End Sub

    HTH
    Regards,
    Howard

    "CBrausa" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I have information in one row, 39 columns, Sheet 1, I want to copy that
    > info over to Sheet 2, and use 3 rows, 12 columns.
    > I used EasyFilter to filter my data.
    > Can & how do I do this?
    >
    >
    > --
    > CBrausa
    > ------------------------------------------------------------------------
    > CBrausa's Profile:
    > http://www.excelforum.com/member.php...o&userid=24677
    > View this thread: http://www.excelforum.com/showthread...hreadid=520333
    >




  3. #3
    L. Howard Kittle
    Guest

    Re: Is this possible?

    Or if you don't want to start in the second rowon sheet 2, use this:

    Sub CopyIt()
    Range("A1").Resize(1, 13).Copy Sheets("Sheet2"). _
    Range("A100").End(xlUp) '.Offset(1, 0)
    Range("A1").Offset(0, 13).Resize(1, 13).Copy _
    Sheets("Sheet2").Range("A100").End(xlUp).Offset(1, 0)
    Range("A1").Offset(0, 26).Resize(1, 13).Copy _
    Sheets("Sheet2").Range("A100").End(xlUp).Offset(1, 0)
    End Sub

    HTH
    Regards,
    Howard

    "CBrausa" <[email protected]> wrote in
    message news:[email protected]...
    >
    > I have information in one row, 39 columns, Sheet 1, I want to copy that
    > info over to Sheet 2, and use 3 rows, 12 columns.
    > I used EasyFilter to filter my data.
    > Can & how do I do this?
    >
    >
    > --
    > CBrausa
    > ------------------------------------------------------------------------
    > CBrausa's Profile:
    > http://www.excelforum.com/member.php...o&userid=24677
    > View this thread: http://www.excelforum.com/showthread...hreadid=520333
    >




+ 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