Hi @Rajesh,
Do you want to reset the Combo Box when the Edit form is on Edit mode as that in NewForm?
Based on the formula you provided, I have made a test, the issue is confirmed on my side.
The Reset() function or Reset proeprty is used to reset the Control (e.g. Combo Box control) to the default value.
When you edit a record within the Edit form (The Edit form is in Edit mode), the Combo Box control would have a default selected value, so when you reset the Combo Box control (On your side, it is the second Drop down), it would reset your Combo Box to the original status with the default value selected.
As an alternative solution, you could consider clear the default selected value within your Combo Box. I have made a test on my side, please take a try with the following workaround:
Set the OnVisible property of the first screen of your app to following:
Set(ResetSecondCombo, Blank())
Set the OnChange property of the first Combo Box control to following:
Set(ResetSecondCombo, Blank());
Set(ResetSecondCombo, true)
Set the DefaultSelectedItems property of the second Combo Box control to following:
If(
!IsBlank(ResetSecondCombo),
{},
Parent.Default
)
Best regards,
Kris