Hi,
I am trying to make a code that allows me to say ' If textinputs1 and textinput2 fields match, display button'.
So if user adds text in one field and writes the same text on the other field then a button is displayed.
Can anyone help me?
Solved! Go to Solution.
@Anonymous
Make the visible property of the button
TextInput1.Text = TextInput2.Text && !IsBlank(TextInput1.Text) && !IsBlank(TextInput2.Text)
so the button will not be visible if both boxes are blank
@Anonymous
Make the visible property of the button
TextInput1.Text = TextInput2.Text && !IsBlank(TextInput1.Text) && !IsBlank(TextInput2.Text)
so the button will not be visible if both boxes are blank
@Anonymous
If this answers your question, please accept it as a solution.
Thank you for your input, this solution works 🙂 thank you
User | Count |
---|---|
170 | |
95 | |
77 | |
72 | |
59 |
User | Count |
---|---|
215 | |
166 | |
97 | |
95 | |
74 |