I have a custom powerapps form that has a toggle field (true, false) that when it is true the users can see and fill in their information into text fields. However, when the toggle is set to "false" I want it to go back to disable (which I have done) but also to clear out any text fields that were filled out in regards to that toggle. I can't figure out how to set the text fields to clear when the toggle is = false. Again, based on image below, I want the field to go back to empty whenever the toggle is set to FALSE. Thanks.
Solved! Go to Solution.
Hi @sheila33496 ,
On the OnChange of the toggle do something like this
If(
!Self.Value,
Reset(TextBox1);
Reset(TextBox2);
. . . .
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @sheila33496 ,
On the OnChange of the toggle do something like this
If(
!Self.Value,
Reset(TextBox1);
Reset(TextBox2);
. . . .
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
This worked perfectly! Thank you!!!!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Power Platform release plan for the 2022 release wave 2 describes all new features releasing from October 2022 through March 2023.
User | Count |
---|---|
206 | |
97 | |
60 | |
51 | |
45 |
User | Count |
---|---|
258 | |
158 | |
85 | |
79 | |
58 |