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!!!!
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
191 | |
70 | |
50 | |
38 | |
28 |
User | Count |
---|---|
243 | |
114 | |
91 | |
91 | |
71 |