web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Assign the same task t...
Power Apps
Answered

Assign the same task to multiple users

(0) ShareShare
ReportReport
Posted on by 5

Hi all,

 

I am trying to assign a task to multiple users at a time and create separate records in the Sharepoint list. 

 

This is what I am trying to do:

From Power App,

Task (Text input): Task 1

Description (Text input): Description 1

Assignee (Combo Box): Assignee 1, Assignee 2

 

After submitting, patch the SharePoint list,

TaskDescriptionAssignee
Task 1Description 1Assignee 1
Task 1Description 1Assignee 2

 

 

 

My initial approach is using Combo Box to select the assignees (More than 1), then patch the SharePoint list with the result along with the other texts. However, using ComboBox1.Selected.DisplayName only gives me the result of the latest selected result from the combo box instead, which causes the following in the Sharepoint list:

TaskDescriptionAssignee
Task 1Description 1Assignee 2
Task 1Description 1Assignee 2

 

May I know how do I solve this issue? Really appreciate your help.

 

@WarrenBelz @LaurensM @Drrickryp @BCBuizer @cha_cha @RandyHayes 

 

Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    154,496 Most Valuable Professional on at

    Hi @englcc ,

    Something like this should do it (assuming Assignee is a Person field)

    Patch(
     SPListName,
     ForAll(
     ComboBoxName.SelectedItems As aPatch,
     {
     Task: TaskBoxName.Text,
     Description: DescriptionBox.Text,
     Assignee:
     {
     '@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
     Claims: "i:0#.f|membership|" & Lower(aPatch.Email),
     Department: "",
     DisplayName: aPatch.DisplayName,
     Email: aPatch.Email,
     JobTitle: "",
     Picture: ""
     }
     )
     )
    )

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    MVP (Business Applications)   Visit my blog Practical Power Apps

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 531 Most Valuable Professional

#2
Haque Profile Picture

Haque 261

#3
Kalathiya Profile Picture

Kalathiya 221 Super User 2026 Season 1

Last 30 days Overall leaderboard