Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi!
Wanted to reach out as I´ve been trying to find a way to achieve the following:
I have a table that has the following structure
Name | Skill |
John Doe | Java |
John Doe | .NET |
Michael Jordan | Python |
Michael Jordan | Scala |
I would like to have the following outcome
Name | Skill |
John Doe | Java/.NET |
Michael Jordan | Python/Scala |
Thank you for your assistance.
Best,
Solved! Go to Solution.
Hi, @fernandoC ;
You could create a measure or column :
1.create a measure.
Measure = CONCATENATEX(FILTER(ALL('Table'),[Name]=MAX('Table'[Name])),'Table'[Skill], "/")
2.create a column.
Measure = CONCATENATEX(FILTER(ALL('Table'),[Name]=MAX('Table'[Name])),'Table'[Skill], "/")
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @fernandoC ;
You could create a measure or column :
1.create a measure.
Measure = CONCATENATEX(FILTER(ALL('Table'),[Name]=MAX('Table'[Name])),'Table'[Skill], "/")
2.create a column.
Measure = CONCATENATEX(FILTER(ALL('Table'),[Name]=MAX('Table'[Name])),'Table'[Skill], "/")
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@fernandoC , Create a measure and use it with name, in visual
measure = concatenatex(Table, Table[Skill], "/")
Hi @amitchandak
I tried using a measure but I'm not getting the expected results. When used in a table visual the results are not being grouped based on the Name. Any suggestions?.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
38 | |
31 | |
26 |