+ Reply to Thread
Results 1 to 14 of 14

Advanced transpose macro

Hybrid View

  1. #1
    Registered User
    Join Date
    12-19-2008
    Location
    canada
    MS-Off Ver
    2007
    Posts
    10

    Advanced transpose macro

    Hi,

    I am desperately seeking a better way of transposing a large amount of data. By the looks of other posts, my objective is possible with a bit of VBA. Sadly, I am VBA illiterate. I sincerely appreciate your help.

    My data looks like this (simplified) [ data is separated by columns "|".

    A | May 1 | Jun 25 | Aug 9 | Dec 12
    B | Apr 1 | Oct 25
    C | Jan 6 | July 7 | Nov 11

    I want to make it look like this:
    A | May 1
    A | June 25
    A | Aug 9
    A | Dec 12
    B | Apr 1
    B | Oct 25
    C | Jan 6
    C | Jul 7
    C | Nov 11

    I have accomplished this in the past, but it involved importing the table into access, then creating a query for each of the "date" columns, then copying and pasting the results into one table. It was a painful experience considering there are over 2,000 lines on the original table (resulting in 25,00 lines in the combined query).

    Any insight you have would be very very greatly appreciated.

    -J

  2. #2
    Registered User
    Join Date
    12-19-2008
    Location
    canada
    MS-Off Ver
    2007
    Posts
    10

    From another post, but needs modification

    I saw this on another post, but it needs some mod to work in my situation. Thanks for your help!

    Sub test()
         Dim ResultArray, _
         SingleName                    As String, _
         ColorVal                 As String, _
         NamesToGet               As String, _
         ReadInString             As String, _
         RowCount                 As Long, _
         TestRow                  As Long, _
         NameCount                As Long, _
         Ctrl                     As Long, _
         BarPos                   As Integer, _
         LISTSHT                  As Worksheet, _
         PARSED                   As Worksheet
    
         
         
         Set LISTSHT = Sheets("Sheet1")          'original unprocessed sheet
         Set PARSED = Sheets("parsed")           ' sheet to hold code output
         
         RowCount = LISTSHT.Cells(Rows.Count, "A").End(xlUp).Row
         
         For TestRow = 1 To RowCount 'Step -1
              ReadInString = LISTSHT.Range("A" & TestRow)
              BarPos = InStr(1, ReadInString, "|")
              ColorVal = Trim(Left(ReadInString, BarPos - 1))
              NamesToGet = Mid(ReadInString, BarPos + 1)
              ResultArray = Split(NamesToGet, ",")
              
              If UBound(ResultArray) = -1 Then
                   NameCount = NameCount + 1
                   PARSED.Cells(NameCount, 1).Value = ColorVal
              Else
                   For Ctrl = 0 To UBound(ResultArray)
                        NameCount = NameCount + 1
                        PARSED.Cells(NameCount, 1).Value = ColorVal
                        SingleName = Trim(ResultArray(Ctrl))
                        PARSED.Cells(NameCount, 2).Value = SingleName
                   Next Ctrl
              End If
         Next TestRow
    End Sub

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    How about posting a workbook with a meaningful sample of the data (a hundred or so rows)?
    Entia non sunt multiplicanda sine necessitate

  4. #4
    Registered User
    Join Date
    12-19-2008
    Location
    canada
    MS-Off Ver
    2007
    Posts
    10

    The data to transpose

    Here is an excerpt of the data I am trying to transpose.

    Thank you again for your help.

    J
    Attached Files Attached Files

  5. #5
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606
    Does this do what you want? It puts the results on sheet2.
    Sub x()
    
    Dim rng As Range
    
    Application.ScreenUpdating = False
    
    Sheet1.Activate
    For Each rng In Range("A3", Range("A3").End(xlDown))
        Range(rng, rng.End(xlToRight)).Copy
        Sheet2.Cells(Rows.Count, 1).End(xlUp)(2).PasteSpecial Transpose:=True
    Next rng
    
    Application.ScreenUpdating = True
    
    End Sub

  6. #6
    Registered User
    Join Date
    12-19-2008
    Location
    canada
    MS-Off Ver
    2007
    Posts
    10

    Very close!

    This is pretty close, but I need to have the original data in column A repeated alongside the transposed dates (now in column B).

    Like this:
    PN | Date
    A | Jun 1
    A | July 1
    A | Aug 4

    Currently, its like this:
    A
    Jun 1
    July 1
    Aug 4

    Thanks for your amazingly quick response.

    J.

  7. #7
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606
    Try this:
    Option Explicit
    
    Sub x()
    
    Dim rng As Range, rng2 As Range
    
    Application.ScreenUpdating = False
    
    Sheet1.Activate
    For Each rng In Range("A3", Range("A3").End(xlDown))
        Set rng2 = Range(rng.Offset(, 1), rng.End(xlToRight))
        rng2.Copy
        With Sheet2.Cells(Rows.Count, 1).End(xlUp)(2)
            .Offset(, 1).PasteSpecial Transpose:=True
            .Resize(rng2.Columns.Count) = rng
        End With
    Next rng
    
    Application.ScreenUpdating = True
    
    End Sub

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Maybe ...
    Sub x()
        Dim rInp    As Range
        Dim rOut    As Range
        Dim cell    As Range
    
        Application.ScreenUpdating = False
    
        Sheet2.Cells.ClearContents
        Set rOut = Sheet2.Range("A1")
        Sheet1.Select
        
        For Each cell In Range("A3", Range("A3").End(xlDown))
            With cell
                Set rInp = Range(.Offset(, 1), .Offset(, 1).End(xlToRight))
                With rOut.Resize(rInp.Columns.Count)
                    .Value = cell.Value
                    .Offset(, 1).Value = WorksheetFunction.Transpose(rInp.Value)
                End With
                Set rOut = rOut.Offset(rInp.Columns.Count)
            End With
        Next cell
    
        Application.ScreenUpdating = True
    End Sub
    Edit: Stephen, I thought you were off drinking eggnog

  9. #9
    Registered User
    Join Date
    12-19-2008
    Location
    canada
    MS-Off Ver
    2007
    Posts
    10

    Excited to check it out on Monday

    Thanks very much for the amazing insight on this. I didnt have a chance to check it before I left for the weekend. It will be the first thing I do on Monday.

    Thanks again and have a great weekend.

  10. #10
    Registered User
    Join Date
    07-28-2011
    Location
    Melbourne
    MS-Off Ver
    Excel 365
    Posts
    14

    Re: Advanced transpose macro

    Hi Guys This thread is very useful!I was wondering if the code can be modified to also include the heading the date relates to.

    I have tried to put something together but had no luck. I have been using the code StephenR posted on the 01-06-2009, 08:55 PM in the example file Jleopard posted on the 01-06-2009, 08:36 AM

    Originally the result was

    Transpose to:

    A blue large 1-May
    A blue large 10-May
    A blue large 11-May
    A blue large 12-May
    A blue large 13-May
    A blue large 14-May
    B green small 1-Jun
    B green small 2-Jun
    B green small 3-Jun
    B green small 4-Jun
    B green small 5-Jun
    B green small 6-Jun



    But i now need a result as follows:

    Transpose to:

    A blue large Date1 1-May
    A blue large Date 2 10-May
    A blue large Date 3 11-May
    A blue large Date 4 12-May
    A blue large Date 5 13-May
    A blue large Date 6 14-May
    B green small Date1 1-Jun
    B green small Date 2 2-Jun
    B green small Date 3 3-Jun
    B green small Date 4 4-Jun
    B green small Date 5 5-Jun
    B green small Date 6 6-Jun


    Does anyone know if StephenR's code can modified to include this? This save me heaps of time

    Thanks


    V
    Last edited by vbarone; 10-25-2011 at 12:41 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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