Concatenation String and Numeric

Hello, thanks for the great spirit.

I intend to use a unique ID functionality with combined characters (string + Numeric) to form the unique ID, i.e. Surname-Age-Location-Phone#-Firstname. These are variables in different groups of the form. I have tried using this code Concat(${Surname}, ‘-’, ${Age}, ‘-’, ${Location}, ‘-’, ${Phone#}, ‘-’, ${Firstname}) under the calculate function, but seems not working. What am I not doing right? Thanks in advance.

Suuna

Welcome to the community @Suunak! Seems like you have used Concat a capital C instead of the lowercase c which should be concat as discussed in our previous post:

3 Likes

Thank you so much it worked so well. concat(${Q1}, “-”, ${Q2}, “-”, ${Q3}, “-”, ${Q4})

Much appreciated!

1 Like