Results 1 to 8 of 8

Convert Single Pair of Columns to 3 Column (Pair) List

Threaded View

kencoburn Convert Single Pair of... 02-03-2017, 03:02 PM
Bernie Deitrick Re: Convert Single Pair of... 02-03-2017, 05:36 PM
kencoburn Re: Convert Single Pair of... 02-03-2017, 06:33 PM
kencoburn Re: Convert Single Pair of... 02-04-2017, 07:52 AM
kencoburn Re: Convert Single Pair of... 02-05-2017, 01:35 PM
Bernie Deitrick Re: Convert Single Pair of... 02-06-2017, 05:13 PM
kencoburn Re: Convert Single Pair of... 02-21-2017, 06:33 AM
kencoburn Re: Convert Single Pair of... 03-04-2017, 01:43 PM
  1. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Convert Single Pair of Columns to 3 Column (Pair) List

    Sub ThreeColumns()
        
        Dim lngR As Long
        Dim lngC As Long
        
        With Sheet1
            lngR = .Cells(.Rows.Count, "A").End(xlUp).Row - 1
            lngC = .Cells(1, .Columns.Count).End(xlToLeft).Column
            'Copy headers
            .Range("A1").Resize(1, lngC).Copy .Range("A1").Offset(0, lngC)
            .Range("A1").Resize(1, lngC).Copy .Range("A1").Offset(0, 2 * lngC)
            'Move data
            .Range("A1").Offset(1 + 2 * (lngR \ 3) + lngR Mod 3, 0).Resize(lngR \ 3, lngC).Cut .Range("A1").Offset(1, 2 * lngC)
            .Range("A1").Offset(1 + lngR \ 3 + IIf(lngR Mod 3 >= 1, 1, 0), 0).Resize(lngR \ 3 + IIf(lngR Mod 3 >= 1, 1, 0), lngC).Cut .Range("A1").Offset(1, lngC)
        End With
    End Sub
    Last edited by Bernie Deitrick; 02-03-2017 at 05:48 PM.
    Bernie Deitrick
    Excel MVP 2000-2010

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Merging two single column tables creating a new row for each pair
    By nigelbloomy in forum Excel General
    Replies: 5
    Last Post: 08-15-2016, 08:08 PM
  2. Replies: 3
    Last Post: 07-20-2012, 07:29 PM
  3. How to compare two pair columns and insert value from another column
    By dareme in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-27-2010, 01:08 AM
  4. [SOLVED] pair single column to multiple column
    By Ross in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-06-2005, 03:05 AM
  5. [SOLVED] pair single column to multiple column
    By Ross in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-06-2005, 01:05 AM
  6. pair single column to multiple column
    By Ross in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-06-2005, 12:05 AM
  7. [SOLVED] pair single column to multiple column
    By Ross in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-05-2005, 10:05 PM

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