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 dateJoin 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?.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
66 | |
65 | |
57 | |
39 | |
27 |
User | Count |
---|---|
85 | |
59 | |
45 | |
42 | |
39 |