Pivot/transpose ??

Emm

Board Regular
Joined
Nov 29, 2004
Messages
165
Hi All,

I have a list of materials that has about 10,000 items.
These Items have about 50 Categories.
I want to pivot or transpose the data so I can create validation lists using the categories as headers.

Example: as existing List

CAT ITEM
Fruit Banana
Fruit Apple
Vege Carrot
Vege Potato


As Validation List

FRUIT VEGE
Banana Carrot
Apple Potato

I'm currently using Extract Unique to create CAT headers,
then filtering the list on each category to copy and paste the items under the headers,
then Name the ranges using CAT names.

It is a case of press the button, then go make the coffee ... VERY slow..

Is there a faster way?

Thanks

Keith
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
How about this
Code:
Sub CopyTranspose()

    Dim Cl As Range
    Dim Dict As Object
    Dim Ky As Variant
    Dim col As Long
    
Application.ScreenUpdating = False

    Set Dict = CreateObject("scripting.dictionary")
    
    With Sheets("[COLOR=#0000ff]Records[/COLOR]")
        For Each Cl In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            If Not Dict.exists(Cl.Value) Then
                Dict.Add Cl.Value, Cl.Offset(, 1).Value
            Else
                Dict.Item(Cl.Value) = Dict.Item(Cl.Value) & "|" & Cl.Offset(, 1).Value
            End If
        Next Cl
    End With
    col = 1
    With Sheets("[COLOR=#0000ff]New[/COLOR]")
        .Range("A1").Resize(, Dict.Count).Value = Dict.keys
        For Each Ky In Dict.items
        .Cells(2, col).Resize(UBound(Split(Ky, "|"))).Value = Application.Transpose(Split(Ky, "|"))
        col = col + 1
        Next Ky
    End With
    
End Sub
Changing sheets names in blue to suit
 
Upvote 0
Wow !!! ... that is so fast Fluff ...
Fantastic.... now I wont have to drink so much coffee :)

Thankyou ...

Not sure how it does it, but will try and figure it out..

Keith
 
Upvote 0
How about this
Code:
Sub CopyTranspose()

    Dim Cl As Range
    Dim Dict As Object
    Dim Ky As Variant
    Dim col As Long
    
Application.ScreenUpdating = False

    Set Dict = CreateObject("scripting.dictionary")
    
    With Sheets("[COLOR=#0000ff]Records[/COLOR]")
        For Each Cl In .Range("A2", .Range("A" & Rows.Count).End(xlUp))
            If Not Dict.exists(Cl.Value) Then
                Dict.Add Cl.Value, Cl.Offset(, 1).Value
            Else
                Dict.Item(Cl.Value) = Dict.Item(Cl.Value) & "|" & Cl.Offset(, 1).Value
            End If
        Next Cl
    End With
    col = 1
    With Sheets("[COLOR=#0000ff]New[/COLOR]")
        .Range("A1").Resize(, Dict.Count).Value = Dict.keys
        For Each Ky In Dict.items
        .Cells(2, col).Resize(UBound(Split(Ky, "|"))).Value = Application.Transpose(Split(Ky, "|"))
        col = col + 1
        Next Ky
    End With
    
End Sub
Changing sheets names in blue to suit

Hi Fluff,

I have it working well except for one thing..
I'm missing the last row in each category (record)
I cant seem to find the adjustment required ...
Can you help?

Thanks,

Keith
 
Upvote 0
Make the change shown here in red
Code:
        .Cells(2, col).Resize(UBound(Split(Ky, "|"))[COLOR=#ff0000] + 1[/COLOR]).Value = Application.Transpose(Split(Ky, "|"))
 
Upvote 0
Make the change shown here in red
Code:
        .Cells(2, col).Resize(UBound(Split(Ky, "|"))[COLOR=#ff0000] + 1[/COLOR]).Value = Application.Transpose(Split(Ky, "|"))

You are a LEGEND :) ... thank you...
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,849
Members
449,194
Latest member
HellScout

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top