Forum Discussion

santu1021's avatar
santu1021
Helper II
6 years ago
Solved

Power BI Download - Mutiple rows into one row Huge data

Dear,

 

I have huge data in power BI which I wanted to download. I have part numbers vs model usage, ex one part number used on 100models. Similar I have over 210k parts vs model usage. I'm looking to have model usage in one signel row separated by commans

 

1. As is 

MODEL_NUMBERPART_NUMBER
Model 112345
Model 212345
Model 312345
Model 412345
Model 512345
Model 612345
Model 712345
Model 812345
Model 912345
Model 1012345
Model 1112345
Model 1212345
Model 1312345
Model 1412345
Model 1512345
Model 1612345

 

Reqruied.

PART_NUMBERMODEL_NUMBER
12345

Model 1,Model 2, Model 3, Model 4,Model 5,Model 6,Model 7,Model 8,Model 9,Model 10,Model 11,Model 12,Model 13,Model 14

 

 

Thank You,

Santhosh

 

  • Anonymous's avatar
    Anonymous
    6 years ago

    Try the code below

    = Table.Group(Source, {"PART_NUMBER"}, {{"MODEL_NUMBER", each Text.Combine([MODEL_NUMBER],","), type text}})

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Try the code below

    = Table.Group(Source, {"PART_NUMBER"}, {{"MODEL_NUMBER", each Text.Combine([MODEL_NUMBER],","), type text}})