Hi,
I have a flow that returns a record, in that i have a collection, that collection i have to store it in a item in powerapps to populate in a combobox. what is the format for it?(The column type is multi select lookup column)
I tried this which is not working,
SelectedComplianceSafetyStandards: ForAll(
Table(ParseJSON(Text(Value.SelectedComSafStandards))),
{
Id: Value(ThisRecord.Value.Id),
Value: Text(ThisRecord.Value)
}
In Json format it is populating like this:
"SelectedComSafStandards": [
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 3,
"Value": "Mechanical"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 1,
"Value": "Solvent"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 27,
"Value": "Personal factors"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 2,
"Value": "Electrical"
}
]
)
Kindly provide a solution


Report
All responses (
Answers (