HI All 🙂
I have a form that draws info from a Sharepoint list that is populated by a MS Form via Automate.
I am trying to take a text value passed from the MS form and write it to the choice field (which is used as a LOOKUP in another process)
I am using this on UPDATE of the Combo-boxcard
If(
!IsBlank(DataCardValue41.Selected),
DataCardValue41.Selected,
{
Value: DataCardValue14.Text,
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference"
}
)
it shows no errors but doesn't display the text selected
Any help appreciated
Gary