Hello - I have a SharePoint List form that has 2 fields within it that are location/branch. When a user selects X location, a new field displays with a branch selection. The branches only exist for one location. So I'm just hiding the branch field using the following code: If(ComboBox1.Selected.Title="XXX",true, false). This seems to work fine with no issues.
My issue is that if a user edits an entry the location still shows correctly with what was selected. But the branch field is not visible again. Now, if they re-select X location, the branch they entered is still there. But I can't figure out why on edit the branch field isn't showing correctly.
Any help would be awesome. Thank you!