The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi guys, I am new to Power Bi. I need your help. I have a table which contain three columns id, name and participated
id name participated
---------------------------------------------------------------------
1 Max Football
2 Peter BasketBall
3 Peter Football
4 Max Basketball
5 Max Table Tennis
6 Anderson Football
I need to represent the above table like this
name participated
-----------------------------------------------------------------------
Max Football Basketball TableTennis
Peter Football Basketball
Anderson FootBall
Thanks
Solved! Go to Solution.
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Name],
"participated",CONCATENATEX(FILTER('Table','Table'[Name]=EARLIER('Table'[Name])),'Table'[Participated]," "))
2. Result
You can download the PBIX file from here.
Best regards
Liu Yang
If this post helps,then consider Accepting it as the solution to help other members find it faster.
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
SUMMARIZE('Table','Table'[Name],
"participated",CONCATENATEX(FILTER('Table','Table'[Name]=EARLIER('Table'[Name])),'Table'[Participated]," "))
2. Result
You can download the PBIX file from here.
Best regards
Liu Yang
If this post helps,then consider Accepting it as the solution to help other members find it faster.
@Anonymous , Create a new measure like this and use in visual
concatenatex(Table, Table[participated] , " " )
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
81 | |
80 | |
48 | |
40 |
User | Count |
---|---|
150 | |
110 | |
64 | |
64 | |
57 |