Results 1 to 3 of 3

Transpose multirows from two column into single row with one header

Threaded View

  1. #1
    Forum Contributor
    Join Date
    10-22-2014
    Location
    Indonesia
    MS-Off Ver
    2010
    Posts
    177

    Transpose multirows from two column into single row with one header

    Hello All,

    Hope you have a great time.

    I am trying to transpose data in multi rows from two column into single rows with one header.
    Attached is the macro mockup, need small adjustment, because it's only transpose first column.
    Sub TransposeAreas()
        Dim aArea As Range
        Dim nr As Long
        
        Application.ScreenUpdating = False
        nr = 1
        For Each aArea In Range("A1", Range("A" & Rows.Count).End(xlUp)) _
                    .SpecialCells(xlCellTypeConstants).Areas
            aArea.Copy
            Cells(nr, 3).PasteSpecial Transpose:=True
            nr = nr + 1
        Next aArea
        Application.CutCopyMode = False
        Application.ScreenUpdating = True
    End Sub
    Thank you.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Excel 2013 - Header Info in Column A - Transpose Question
    By alyzar in forum Excel General
    Replies: 4
    Last Post: 04-07-2015, 02:19 PM
  2. [SOLVED] Transpose Array to Single Column
    By jeversf in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 09-07-2014, 05:36 AM
  3. [SOLVED] Text to Column with Single Column Transpose - VBA code help
    By i2rule in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 08-13-2014, 05:09 PM
  4. Transpose Data from Multiple Column to Single Column
    By smudger1989 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 07-12-2013, 04:38 AM
  5. [SOLVED] Transpose a single column to a single row with duplicates removed
    By ggilzow in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-07-2013, 10:50 AM
  6. [SOLVED] Select Header Row and Transpose to a Column in a New Worksheet
    By Kespin in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-17-2013, 06:16 PM
  7. Transpose multiple rows to one column keping the row header.
    By cinciphantom in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-18-2011, 06:42 AM

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