+ Reply to Thread
Results 1 to 2 of 2

macro for transposing data

Hybrid View

  1. #1
    ElaineYKwan@gmail.com
    Guest

    macro for transposing data

    i have multiple rows, each with varing numbers of columns. i need to
    get it so that each columns has it own row. i have over 1000 columns
    and was hoping to get a macro can transpose the data for me?? for
    example:

    I have something like this:
    A 3 4 7
    B 5 2 9 1 5

    I need it to look like this:
    A 3
    A 4
    A 7
    B 5
    B 2
    B 9
    B 1
    B 5

    can someone help me?! =o)


  2. #2
    Bernard Liengme
    Guest

    Re: macro for transposing data

    This works for me with the sample data

    Sub trans()
    Set rng = Range("A1:F2") 'The input range: adjust as needed
    Sheets("Sheet2").Select 'delete this line is transposing
    to same sheet
    Range("A10").Select 'The start of output range:
    adjust as needed
    k = 0

    For Each rw In rng.Rows

    For Each mycell In rw.Columns
    If IsEmpty(mycell) Then Exit For
    If mycell.Column = 1 Then
    myletter = mycell
    Else
    ActiveCell.Offset(rowOffset:=k, columnOffset:=0) = myletter
    ActiveCell.Offset(rowOffset:=k, columnOffset:=1) = mycell
    k = k + 1
    End If
    Next

    Next

    End Sub

    best wishes


    --
    Bernard V Liengme
    www.stfx.ca/people/bliengme
    remove caps from email

    <ElaineYKwan@gmail.com> wrote in message
    news:1136400188.400198.15290@g49g2000cwa.googlegroups.com...
    >i have multiple rows, each with varing numbers of columns. i need to
    > get it so that each columns has it own row. i have over 1000 columns
    > and was hoping to get a macro can transpose the data for me?? for
    > example:
    >
    > I have something like this:
    > A 3 4 7
    > B 5 2 9 1 5
    >
    > I need it to look like this:
    > A 3
    > A 4
    > A 7
    > B 5
    > B 2
    > B 9
    > B 1
    > B 5
    >
    > can someone help me?! =o)
    >




+ 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