Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
In a table in Power BI I have 2 columns 'Action' and 'UserName' For each 'Action' there may be one, two, ... n 'Usernames' associated to that 'Action' in successive rows. I would like to create a measure/column that lists the 'Action' one time and this new measure/column would contain all the usernames. Is this even possible? I have no option to change the way the data source.
What I have now (Program A not the only Action)
| Action | Username |
| Develop and Roll out Program A | Bob |
| Develop and Roll out Program A | Tony |
| Develop and Roll out Program A | Wendy |
What I wanna get to
| Action | Username |
| Develop and Roll out Program A | Bob, Tony, Wendy |
| Develop and Roll out Program B | Ralph, Chuck, Todd |
| Develop and Roll out Program C | Gweneth, Hallie, Vanna |
Solved! Go to Solution.
HI @ghutchins
Try your measure like this:
Measure =
IF(
HASONEVALUE(TableName[Action]),
CONCATENATEX(TableName,TableName[UserName],", "),
BLANK()
)
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
HI @ghutchins
Try your measure like this:
Measure =
IF(
HASONEVALUE(TableName[Action]),
CONCATENATEX(TableName,TableName[UserName],", "),
BLANK()
)
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
Hi @ghutchins,
Aweseom! 🙂
THank you for your feedback.
Best regards
Michael
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.