Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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?.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
70 | |
57 | |
37 | |
36 |
User | Count |
---|---|
85 | |
65 | |
60 | |
46 | |
45 |