I have a SharePoint form customized using power apps.
the form has one dropdown choice field.
i have a context variable on the on change event of the dropdown to set
then in the default value of a textbox i have a code
If(varreset=true,Blank(), Parent.Default);
so if the dropdown changes then clear the textbox value
on the form visible i am updating the varreset to false so that when the form load again the value goes back to false
the problem i have having is once the reset value changes to true it is never changing back to false when i open another item, either new, or view or edit item it is always true.
i have to do CTRL+F5 to refresh the screen multiple times to reset the context value to false again.
the idea was to reset some of the textbox values when the dropdown changes so that user can enter new data.
Anything i am doing wrong here?