Forum Discussion

Rajesh_8015's avatar
Rajesh_8015
New Member
1 year ago
Solved

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?
  • pankajnamekar25's avatar
    1 year ago

    Hello 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.