I have 3 ComboBoxes that are dependent. ComboBox 2 is dependent on CombBox1. ComboBox 3 is dependent on ComboBox2. All is good with ComboBox1 and ComboBox2. ComboBox 3 shows the correct items, but when the form is patched or is returned to in "Edit Mode" it resets to blank, not the value selected originally. I want ComboBox3 to have the "Default Selected Value" property to be a value from SharePoint based its ID. The details about my ComboBoxes are below.
ComboBox1:
Items: Choices('Field Test Requests NEW'.Engineer)
DefaultSelectedItem: Parent.Default
ComboBox2:
Items: Sort(ShowColumns(Filter('Field Test Requests NEW',Engineer.DisplayName=DataCardValue91.Selected.DisplayName),"Name"),Name,Ascending)
DefaultSelectedItem: First(Filter(ShowColumns(Filter('Field Test Requests NEW',Engineer.DisplayName=DataCardValue91.Selected.DisplayName),"Name"),Name=ThisItem.ProjectNameStore))
ComboBox3:
Items: Sort(ShowColumns(Filter('Field Test Requests NEW_Accounts',FT_ID=TextInput1.Text),"AccountName"),AccountName,Ascending)
DefaultSelectedItem: ??????
Thanks for the help!