Forum Discussion

AJPF's avatar
AJPF
Helper I
4 years ago
Solved

pivoting columns

Hello all,    I have some data (only 2 columns) which looks this:    ID Note 100 This 100 is 100 an 200 example 200 of 200 what 300 I  300 need  300 to 300 see   What I want is this: ...
  • ryan_mayu's avatar
    4 years ago

    AJPF 

    you can try this

    1. group by

    = Table.Group(#"Changed Type", {"id"}, {{"Count", each Text.Combine([NOTE]," "), type nullable text}})

    2. split the new column by space

    3. change the column name

    pls see the attachment below