Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Merge rows into single rows in front end

Hi All,

 

Original Data set.

 

9002.PNG

 

Expected ouput.

 

901.PNG

 

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

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community 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:

b2.png

 

Best Regards

Allan

 

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

View solution in original post

3 REPLIES 3
v-alq-msft
Community Support
Community 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:

b2.png

 

Best Regards

Allan

 

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

amitchandak
Super User
Super User

Are you asking or posting a solution.

Anonymous
Not applicable

Hi @amitchandak ,

 

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

 

Thanks

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors