sharepoint form is customized and added azure sql column values in drop down list, i used combo box in which values gets filtered according to drop down list, values in combo box gets from azure sql ,
when sharepoint form is edited , value gets blank.
combo box defaultselecteditem
If(
SharePointForm1.Mode = FormMode.Edit,
{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Value: ThisItem.'Vendors Name'
}
)
combo box item property
Search('[dbo].[vw_FlowAutomation_Vendors]_1',DataCardValue3.Selected.Value,"Company")
when combo box is selected its associated address field value should be display in text box,,
but its value is saved in sharepoint list but not shown in edit form ?