Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have a table that has User Logon Name and Role. And this has a new row per role for each user. So there can be 10 rows for a single user. I could like to (for a visual) create a column that has all the roles for a single user concatenated, so one after the other. Any ideas how I would do this?
I'm unsure how to get DAX to window like you can with SQL.
Anna
Solved! Go to Solution.
Hi @Anonymous ,
Also we can create a calculated column as below.
Column = CONCATENATEX(FILTER('Table','Table'[User Logon Name]=EARLIER('Table'[User Logon Name])),'Table'[Role])
Also you can find the pbix as attached.
Hi @Anonymous ,
Also we can create a calculated column as below.
Column = CONCATENATEX(FILTER('Table','Table'[User Logon Name]=EARLIER('Table'[User Logon Name])),'Table'[Role])
Also you can find the pbix as attached.
Hi @Anonymous ,
Please try this:
MEASURE =CALCULATE(CONCATENEX(Table, Table[RoleColumn], ", "),AllEXCEPT(Table,Table[LOGONNAMEColumn]))
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.