Hello,
I am trying to use ParseJSON to get a SharePoint item, the SharePoint list has a column that can contain multiple people. I am having trouble bringing that into PowerApps.
Below is my flow,


And my OnStart property where the flow runs is,
Set(varTasks,'BPA-DC-TaskInformationRetrieve'.Run(varParam).taskresult);
Collect(
colTaskResult,
ForAll(
Table(ParseJSON(varTasks)),
{
ID: Value(Value.ID),
Title: Text(Value.Title),
DocumentNumber: Text(Value.DocumentNumber),
Division: Text(Value.Division),
PracticeArea: Text(Value.PracticeArea),
Area: Text(Value.Area),
DocumentType: Text(Value.DocumentType),
Revision: Text(Value.Revision),
DocumentController: Text(Value.DocumentController),
ProcessOwner: Text(Value.ProcessOwner),
Approvers: Text(Value.Approvers),
FileNamewithExt: Text(Value.FileNamewithExt),
RequestType: Text(Value.RequestType),
RequestDescription: Text(Value.RequestDescription),
Comments: Text(Value.Comments)
}
)
)
Does anyone have any idea how to get that Approvers object to a form where I can add the values to a ComboBox People Picker to search the email addresses.
TIA