Hi, I have two fields, a number field (DataCardValue3) and a single line of text field.
The number field is blank to begin with. If a value is entered which is greater than 0, I would like the text field to appear.
On the Visible of the text field I have attempted variations of the following without success.
If(Value(DataCardValue3 >0 true, false))
Any advise welcomed.
Solved! Go to Solution.
Use this code. No IF function is necessary:
Value(DataCardValue3.Text) > 0
---
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."
Use
If(Value(DataCardValue3.Text) >0, true, false)
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Use this code. No IF function is necessary:
Value(DataCardValue3.Text) > 0
---
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 |
---|---|
119 | |
86 | |
83 | |
74 | |
69 |
User | Count |
---|---|
215 | |
179 | |
140 | |
108 | |
83 |