Hi,
In my powerapp, I have a need to allow users to enter only 6 digits for a number field coming from sp list. If they enter more than 6, I would disable submit button, can someone please help me with the expression for number field validation, thanks in advance.
Solved! Go to Solution.
@Anonymous
You can change the MaxLength property of the Text Input to this code
6
Or you can disable the button by putting this code in the DisplayMode property of the button.
If(Value(TextInput_MyNumber.Text)<1000000, DisplayMode.Edit, DisplayMode.Disabled)
---
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."
@Anonymous
You can change the MaxLength property of the Text Input to this code
6
Or you can disable the button by putting this code in the DisplayMode property of the button.
If(Value(TextInput_MyNumber.Text)<1000000, DisplayMode.Edit, DisplayMode.Disabled)
---
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 |
---|---|
251 | |
102 | |
94 | |
48 | |
37 |