In this post, we look into how to reset the data on the controls in PowerApps. Basically we come across some scenarios where the controls data to be set on submitting view, click on clear/reset button and so on. PowerApps controls have two properties like Default which is used to set the default value and Reset which is basically used to reset the data on the control to Default value. We can’t directly reset the data of a control to default value like traditional web/windows kind of programming as below. PowerApps use expressions for everything. TextBox1.Text = “” We must use the Reset property to reset the data of the control to Default value. I have developed a sample PowerApp called Calculator to demonstrate the same functionality. Please see the screen-shot below. It contains two TextInput controls to enter the values and then it has Operators like “+”, “-“, “*” and “/” to do the arithmetic operations and by default “+” is done against the data that e...