I have a form that has a combo box where you would select a lot number which is filtered by a text box with a UPC number in it. I can get it to populate correctly but when I pick a lot number and save, it reverts back to being blank and nothing updates in the sharepoint list the form is tied to.
My filter for the combo box
Filter(
lot_1,
UPC = DataCardValue7.Text
)
lot_1 is a spreadsheet with lot numbers and UPC codes.
The update function on the datacard this resides in is
DataCardValue9.SelectedItems
However it has an error saying expected text value.
Hoping to get some help with this issue.