We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Combine letters and numbers to make a Unique Identifier

calvincarr29
8 - Asteroid

I'm using the formula tool to try to make a new column that adds "R" + [RecordID] = R1, however it's not allowing me.

1 REPLY 1
ChrisTX
16 - Nebula
16 - Nebula

If RecordID is a numeric data type, you have to convert it to a string.  Try 

 

"R" + ToString([RecordID],0)

 

Chris

Labels
Top Solution Authors