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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

Top Kudoed Authors