SOLVED
Writing text plus field value in formula
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
lledl
7 - Meteor
‎01-12-2017
12:12 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello,
How do I write a text along with field name in formula?
like "your score is:" [Field1] ----->Your Score is: 85 (assuming FIELD1=85)
Thank you
Solved! Go to Solution.
Labels:
- Labels:
- Input
1 REPLY 1
RodL
Alteryx Alumni (Retired)
‎01-12-2017
12:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Depending on the data type of your [Field1], you may need to convert to a String format (using the ToString function), but once it's a string, then just concatenate using the "+" operator.
So it would be...
"your score is: " + [Field1]
