Hello,
I have a label witht the formula: If (TextInput1 = TextInput2,"M","N"). It does not update when I change the values in the the text boxes.
However I have label with the formula: TextInput1 + TextInput2. It does update when I change the values in the the text boxes.
Solved! Go to Solution.
The formula:
If(TextInput1 = TextInput2,"M","N")
is comparing whether the control "TextInput1" is equal to the control "TextInput2", which will always be false. You want to compare the text property of those controls, not the controls themselves. So the formula you need I'm guessing should be:
If(TextInput1.Text = TextInput2.Text,"M","N")
The formula:
If(TextInput1 = TextInput2,"M","N")
is comparing whether the control "TextInput1" is equal to the control "TextInput2", which will always be false. You want to compare the text property of those controls, not the controls themselves. So the formula you need I'm guessing should be:
If(TextInput1.Text = TextInput2.Text,"M","N")
User | Count |
---|---|
141 | |
140 | |
76 | |
73 | |
71 |
User | Count |
---|---|
230 | |
171 | |
74 | |
69 | |
60 |