@NK78 , try the following approach.
On PositionDrpDwn:
- Enable the option "AlowEmptySelection"
- Change "Default" to "varSelected"
- Change "OnChage" property to this code:
Set(varSelected, Self.Selected);
Set(varSelected2, Blank())
On PersonnelDrpDwn:
- Change your formula: Filter('List 2',Team.Value = varSelected.Value)
- Enable the option "AlowEmptySelection"
- Change "OnChage" property to this code: Set(varSelected2, Self.Selected)
- Change "Default" to "varSelected2
It should work, just a Note:
If you're using dropdown, it's the default property, If it's combo box, then "DefaultSelectedItems".
Just add another code that Set the variables to Blank() when you need to Reset the fields.
Substitute the variables names as you prefer.
Tell us if it solves your problem : )