In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!

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
Top Solution Authors