Hi,
I have a list with few text fields and one dropdown choice field with three choices. I am trying to submit the data using patch and able to submit values for other text fields but not the dropdown field.
List - Social, Dropdown choice field in list -SM,
Dropdown field name in PowerApps -SocialMedia (Items property - Choices(Social.SM))
Here is my code on Submit button OnSelect -
Patch(Social,
Defaults(Social),
{
'Net Working Media': NWMediaValue.Text,
Mediatypes: MediaTypeValue.Text,
SM:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",Value:SocialMedia.Selected.Value}
}
);
Thanks in Advance!