Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Merge rows into single rows in front end

Hi All,

 

Original Data set.

 

 

Expected ouput.

 

 

However we can achieve it in Edit queries but can we achieve it in front end alone using (i assum concatenate or Concatenatex).

 

Provided the URL which tells how to do it in edit queries.

https://www.excel-university.com/combine-rows-into-a-delimited-list/

 

Thanks in Advance

  • Hi, Anonymous 

     

    Based on your description, you may create a calculated table as follows.

     

    ResultTable = 
    SUMMARIZE(
        'Table',
        'Table'[Name],
        "Custom",
        CONCATENATEX(
            'Table',
            'Table'[Vehicle],
            ",")
    )

     

     

    Result:

     

    Best Regards

    Allan

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi amitchandak ,

       

      I am asking for a solution on how to achieve it without going into edit queries!!

       

      Thanks

  • v-alq-msft's avatar
    v-alq-msft
    Icon for Community Support rankCommunity Support

    Hi, Anonymous 

     

    Based on your description, you may create a calculated table as follows.

     

    ResultTable = 
    SUMMARIZE(
        'Table',
        'Table'[Name],
        "Custom",
        CONCATENATEX(
            'Table',
            'Table'[Vehicle],
            ",")
    )

     

     

    Result:

     

    Best Regards

    Allan

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.