Hi all,
I have two Sharepoint Lists named List1 and List2 respectively and both of types are single line of text. When I created an Edit Form and inserted a combo box in a data card. Then I set the Items property of the combo box as below:
Distinct
(
Filter
(
List1
, Field1 =
Dropdown1_1
.Selected.Value && Field2 =
"specific value"
),Field3)
Then enbaled the multiple selection and set Update property of the data card as below:
ComboBox.SearchText
But when I submit the form, nothing appear in the sharepoint lists.
I have change combo box to drop down control and text input control, both of them can deliver right value to sharepoint list. How can I fix this problem?