Forum Discussion
PaulPeterson1
6 years agoQrew Assistant Captain
Try something like this:
If(not IsNull([Field 1]), [Field 1], not IsNull([Field 2]), [Field 2], not IsNull([Field 3]), [Field 3])
------------------------------
Paul Peterson
------------------------------
If(not IsNull([Field 1]), [Field 1], not IsNull([Field 2]), [Field 2], not IsNull([Field 3]), [Field 3])
------------------------------
Paul Peterson
------------------------------
- PaulPeterson16 years agoQrew Assistant CaptainAmended, since you want to display text:
 If(not IsNull([Field 1]), Text 1, not IsNull([Field 2]), Text 2, not IsNull([Field 3]), Text 3)
 Obviously the Text 1, 2 and 3 are just placeholders. You can either enter the text inline or define variables and use them in the formula.
 ------------------------------
 Paul Peterson
 ------------------------------
- NicoleVarner6 years agoQrew MemberThank you! This works perfectly!
 ------------------------------
 Nicole Varner
 ------------------------------