I have a powerapps form that has a number field. When the user edits the form, changes the number and saves - all is as expected. When the user edits the form, deletes the number and saves it - the original number stays on the form.
Any advise how to keep a number deleted?
Solved! Go to Solution.
In the Update property of the Card try this code.
If(IsBlank(DataCardValue_YourNumber.Text), Blank(), DataCardValue_YourNumber.Text)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
In the Update property of the Card try this code.
If(IsBlank(DataCardValue_YourNumber.Text), Blank(), DataCardValue_YourNumber.Text)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
User | Count |
---|---|
198 | |
121 | |
85 | |
50 | |
41 |
User | Count |
---|---|
284 | |
157 | |
134 | |
73 | |
72 |