Results 1 to 7 of 7

Transpose column against repeated cells

Threaded View

haroonkhurshid Transpose column against... 03-31-2021, 10:00 AM
AliGW Re: Transpose column against... 03-31-2021, 10:10 AM
haroonkhurshid Re: Transpose column against... 03-31-2021, 10:31 AM
Glenn Kennedy Re: Transpose column against... 03-31-2021, 10:19 AM
AliGW Re: Transpose column against... 03-31-2021, 10:32 AM
haroonkhurshid Re: Transpose column against... 03-31-2021, 10:34 AM
AliGW Re: Transpose column against... 03-31-2021, 10:35 AM
  1. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,385

    Re: Transpose column against repeated cells

    I don't understand why you are using the old .xls format with Excel 2013. I have provided a solution using PowerQuery:

    M Code:

    let
        Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
        #"Changed Type" = Table.TransformColumnTypes(Source,{{"CONSIGNEE", type text}, {"AC#", Int64.Type}, {"WR#", Int64.Type}, {"DESCRIPTION", type text}, {"LBS", Int64.Type}, {"SHIPPER", type text}, {"PHONE", type text}, {"EMAIL", type text}, {"ADDRESS", type text}, {"VALUE", type number}, {"%", Int64.Type}, {"FREIGHT", type number}, {"FUEL", type number}, {"CUSTOMS & DUTY", type number}, {"VAT", type number}, {"ONLINE PURCHASE TAX", type number}, {"INSURANCE FEE", type number}, {"BROKERAGE FEE", type number}, {"TOTAL", type number}}),
        #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"CONSIGNEE", "AC#", "WR#", "DESCRIPTION", "LBS", "SHIPPER", "PHONE", "EMAIL", "ADDRESS"}, "Attribute", "Value.1"),
        #"Filtered Rows" = Table.SelectRows(#"Unpivoted Other Columns", each ([Attribute] <> "%" and [Attribute] <> "TOTAL" and [Attribute] <> "VALUE"))
    in
        #"Filtered Rows"
    Attached Files Attached Files
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Transpose rows of data to column, with 1st cell in row repeated
    By ads111ads in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 09-25-2020, 08:16 AM
  2. Replies: 3
    Last Post: 11-20-2018, 09:27 PM
  3. If Customer ID Repeated more then 1 then lender value copy and paste transpose
    By upguy in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-13-2017, 02:37 PM
  4. Formula for counting text values in column when value is repeated in cells
    By Blubirdjim in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 12-11-2012, 12:36 PM
  5. Replies: 9
    Last Post: 07-22-2012, 12:03 PM
  6. [SOLVED] Match cells in Column A, then transpose (matching) row data from column B, C, D, etc.
    By Jahoker in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-15-2012, 10:37 AM
  7. Replies: 6
    Last Post: 07-05-2011, 07:18 PM

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