Alert: There is a planned Community maintenance outage October 16th from approximately 10 - 11 PM PST. During this time the Alteryx Community will be inaccessible. Thank you for your understanding!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Writing text plus field value in formula

lledl
7 - Meteor

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

1 REPLY 1
RodL
Alteryx Alumni (Retired)

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]

Labels