In Power Apps, resetting multiple control values can be achieved using the Power Apps in-built function Reset for each control you want to reset.
Reset multiple control values
Let’s say, If you want to reset text input fields txtName, txtAge, and txtGender , you need to use the following code on button OnSelect property.
Reset(txtName); Reset(txtAge); Reset(txtGender);


Reset multiple control using Variables
As demonstrated in the previous example, we need to write the Reset function for each control individually. However, by using either a global or context variable, we can avoid writing the same Reset function repeatedly for each control.
Set(varReset, false); Set(varReset, true);

Now, select each control individually and set its Reset property to varReset.

Reset Form controls
To reset all control values in a form back to their default states, you can use the ResetForm function.

Recommened for you
Submit mulitple records in Power Apps
![]()
