Forum Discussion
Sharif Alhennawy
May 20, 2018Copper Contributor
Assign a task to multiple users - PowerApps
Hi, I'm working on a project through PoweApps and I'd like to know how to assign a Task to multiple users at the same time using {assignments:} ? already it's working with me with single use...
cazcz
Mar 12, 2021Copper Contributor
This took me way too long to figure out how to implement. Here is an example for anyone else:
Planner.CreateTask(planID,taggedLabVar&"-"&ActionText.Text,
{bucketId:bucketID,
startDateTime:UUID,
dueDateTime:DateValue5.SelectedDate,
assignments:Concat(Assignees.SelectedItems,Id,";")})
Assignees is the Combo Box itself. Ignore the start date as a UUID, its just a value I made to use as a primary key for separate table.
AisFaulkner
Feb 27, 2023Copper Contributor
I know this is an old post but this worked perfectly for me!