+ Reply to Thread
Results 1 to 5 of 5

Transpose macro

Hybrid View

  1. #1
    Registered User
    Join Date
    11-02-2012
    Location
    Romania
    MS-Off Ver
    Excel 2003
    Posts
    3

    Transpose macro

    Hello. I have the following problem, I have excel file from attachment, where I have only sheet1 with 4 columns and with using a transpose macro I want to built sheet2 which contains 11 columns, entering new data, according sheet 2 from example. Please help me to build this macro.
    Thank you.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Transpose macro

    attach please a file with sheet2 before macro running
    If solved remember to mark Thread as solved

  3. #3
    Registered User
    Join Date
    11-02-2012
    Location
    Romania
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Transpose macro

    Sheet2 is in this example. So I would like to be after running a macro. I started to write this macro:
    Sub Test()
        Dim Sh As Worksheet
        Dim Rng As Range
        Dim ShNew As Worksheet
        Dim r As Integer
        Dim c As Integer
        Dim x As Integer
        
        Set Sh = Worksheets("sheet1")
        Set Rng = Sh.Range("A1").CurrentRegion
        Set ShNew = Worksheets.Add
        x = 1
        
        ShNew.Cells(x, 1) = "order number"
        ShNew.Cells(x, 2) = "Customer"
        ShNew.Cells(x, 3) = "Date"
        ShNew.Cells(x, 4) = "Pricelist"
        ShNew.Cells(x, 5) = "Ordering Contact"
        ShNew.Cells(x, 6) = "Invoice"
        ShNew.Cells(x, 7) = "Shipping"
        ShNew.Cells(x, 8) = "Description"
        ShNew.Cells(x, 9) = "Product"
        ShNew.Cells(x, 10) = "Qty"
        ShNew.Cells(x, 11) = "Price"
    
    End Sub

  4. #4
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Transpose macro

    Sheet2 has more data than Sheet1, it's not clear what you want

  5. #5
    Registered User
    Join Date
    11-02-2012
    Location
    Romania
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Transpose macro

    I want to obtained sheet2 from sheet1.

+ 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