I have a similar issue like his one but the accepted solution is for new items and my issue is with editing items:
https://powerusers.microsoft.com/t5/Building-Power-Apps/SharePoint-PowerApps-Cascading-dropdown-reset-child-dropdown/td-p/336319
In my sharepoint form I have dropdown 1 and the items in dropdown 2 are filtered depending on the selection in dropdown 1. Only one item can be selected.
I want to reset the selected item in dropdown 2 if the selected value in dropdown 1 changes. This works fine in the powerapps preview or when creating a new item: when I change the selection in the parent dropdown, the child dropdown is reset. But when editing an item, the child dropdown does not reset.
The onchange property in the parent dropdown is:
UpdateContext({ResetDropdown: true});
UpdateContext({ResetDropdown: false})
The Reset property in the child dropdown is: ResetDropdown
The default property of the Child datacard is: ThisItem.Sharepointcolumnname
Any suggestions are very welcome. Many thanks!