+ Reply to Thread
Results 1 to 4 of 4

Convert Rows To Columns

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Convert Rows To Columns

    @LeoTaxi - helped me out a week or so ago with a similar issue. This time I need to create 1 row for each ID and copy over each item, quantity and add a blank column, then the next item, qty and blank column.

    Attached is a sample workbook of the current format that shows what the data is in, and the desired format, that shows how I need the data formatted.

    I appreciate any and all who assist
    Attached Files Attached Files

  2. #2
    Forum Contributor
    Join Date
    07-11-2012
    Location
    india
    MS-Off Ver
    Excel 2010
    Posts
    144

    Re: Convert Rows To Columns

    Hi Jo15765,

    Please find your solution below

    
    Sub Rearrange()
    Sheets("Current Format").Select
    RCount = Range("A:A").CurrentRegion.Rows.Count
    CCount = Range("1:1").CurrentRegion.Columns.Count
    
    Set CF = Sheets("Current Format")
    Sheets("Desired Format").Select
    For i = 2 To RCount
        Range("A" & i).Value = CF.Range("A" & i).Value
        k = 2
        For j = 2 To CCount
            
            If CF.Cells(i, j).Value <> 0 Then
                Cells(i, k).Value = CF.Cells(1, j).Value
                Cells(i, k + 1).Value = CF.Cells(i, j).Value
                k = k + 3
            End If
        Next j
    Next i
    End Sub
    Ravikumar,

    * Please Add Reputation if solved.

  3. #3
    Forum Contributor
    Join Date
    06-18-2010
    Location
    USA
    MS-Off Ver
    Excel 2016
    Posts
    546

    Re: Convert Rows To Columns

    @fshbet -> this does not set-up the header information. Is there a way to also include the header info like I show in my sample workbook?

  4. #4
    Forum Contributor
    Join Date
    07-11-2012
    Location
    india
    MS-Off Ver
    Excel 2010
    Posts
    144

    Re: Convert Rows To Columns

    Hi jo15765,

    You can add the column heading on you own based on you needs. It's fixed one.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Convert rows to columns
    By Geno in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-23-2020, 03:17 PM
  2. Convert Text (in rows) to Excel (columns and rows)
    By Marlon123 in forum Excel General
    Replies: 3
    Last Post: 08-24-2015, 01:17 PM
  3. Convert Rows to Columns?
    By brianjluke in forum Excel Charting & Pivots
    Replies: 12
    Last Post: 06-04-2013, 01:59 PM
  4. [SOLVED] Convert rows to columns
    By Ledarn in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-29-2013, 03:53 AM
  5. Replies: 1
    Last Post: 11-29-2012, 06:24 PM
  6. convert rows to columns?
    By Bill-E-BoB in forum Excel General
    Replies: 1
    Last Post: 04-01-2008, 12:29 PM
  7. [SOLVED] to convert columns to rows having mulit independent group columns
    By Quacy in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-22-2006, 06:25 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