Forum Discussion
MarkShnier__You
Qrew Legend
The tidiest way is this.
List("-", [Field 1], [Field 2], [Field 3], [Field 4])
That will use a hyphen as a separator, but you can choose any character(s) in the quotes.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
DerekPipal1
2 years agoQrew Member
Thanks Mark, that works well.
Is there a way to use the Record ID as well in this formula to have a Unique number?
------------------------------
Derek Pipal
------------------------------
- MarkShnier__You2 years agoQrew Legend
Sure,
List("-", [Field 1], [Field 2], [Field 3], [Field 4], ToText([Record ID#]))
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------- DerekPipal12 years agoQrew Member
Is there a way to get the record ID to show between Field 3 and Field 4?
------------------------------
Derek Pipal
------------------------------- MarkShnier__You2 years agoQrew Legend
List("-",
[Field 1],
[Field 2],
[Field 3],
ToText([Record ID#]),
[Field 4])
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------