@WarrenBelz
Hello Warren,
I hope you are doing well. I'm having a cascading drop down issue on an Edit screen, I'm hoping you can help me out with. The form an employee fills out is on a separate screen in new mode. No issues at all with the cascading dropdowns there.
The edit screen is where I am running into issues. I want the app admins to be able to adjust the Category and Functional Area dropdowns in case the employee accidentally chose the wrong ones. The Category combobox seen below is editable, but the Functional Area dropdown is not. To be clear, they are both Combo Boxes as I want them to be Searchable. Multiple selections is turned off.
My primary list is called 'Oracle Help Desk Tickets'. A separate SharePoint list called 'Track Leads' holds the Category and Functional Area column data. The Category and Functional Area columns are single line of text type columns.

Category Data Card
Default: ThisItem.Category
Update: cbCategoryER.Selected.Result
Category Combo Box
Items: Sort(Distinct('Track Leads', Track), Result, SortOrder.Ascending)
DisplayFields: ["Result"]
SearchFields: ["Result"]
Default: {Value:ThisItem.Category}
DefaultSelectedItems: {Value:ThisItem.Category}
OnChange: Reset(cbFunctionalAreaER) - doesn't work to clear out Functional Area CB selection.
Functional Area Data Card
Default: ThisItem.'Functional Area'
Update: cbFunctionalAreaER.Selected.'Functional Area'
Functional Area Combo Box
Items: SortByColumns(Filter('Track Leads', Track = cbCategoryER.Selected.Result),"FunctionalArea")
DefaultSelectedItems: First(Table(LookUp('Track Leads', 'Functional Area'=Parent.Default)))
DisplayFields: ["FunctionalArea"]
SearchFields: ["FunctionalArea"]
Thank you,
Teresa