Forum Discussion
Rajesh_8015
1 year agoNew Member
Multiple person names on single task
In Microsoft Planner, one task is assigned to multiple persons, but it shows only one person. I want to see the names of all assigned persons. Can you provide DAX for this requirement?
- 1 year ago
Hello Rajesh_8015
try this measure
Assigned Users =
CONCATENATEX(
VALUES(TaskAssignee[UserID]),
RELATED(Users[UserName]),
", "
)
Thanks,
Pankaj Namekar | LinkedInIf this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
pankajnamekar25
Super User
1 year agoHello Rajesh_8015
try this measure
Assigned Users =
CONCATENATEX(
VALUES(TaskAssignee[UserID]),
RELATED(Users[UserName]),
", "
)
Thanks,
Pankaj Namekar | LinkedIn
If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.