I have 3 fields:
Dropdown1.Items = "A", "B", "C"
These 2 fields are in the same card
TextInput1
Default = If(Dropdown1.Selected.Value="A",Parent.Default,ComboBox1.Selected.Result)
ComboBox1
DefaultSelectedItems property: If(Dropdown1.selected.value = "B",Parent.Default,Blank())
However, in the combobox1 im getting the following error message: "Expected Table value" since the parent.default value does not exist in the Combobox1 items (source). How do i fix this issue?
Ps. This worked fine when i had a dropdown instead of a combobox, but due to the number of items i had to switch so the user could use the search function.