Forum Discussion

ccsrtw's avatar
ccsrtw
Advocate I
9 years ago
Solved

power query - group/pivot

I have a table with two columns:   ID                                        Product   006F000000bqOUHIA2 Apple 006F000000bqosaIAAB Banana 006F000000dqoLdIAI Pear       There ...
  • Vvelarde's avatar
    9 years ago

    ccsrtw

     

    Hi, A alternative in DAX:

     

    Create a New Table(from Modeling) and use this:

     

    Table =
    SUMMARIZECOLUMNS (
        Table1[ID],
        "FruitList", CONCATENATEX ( Table1, Table1[Fruit], "," )
    )