Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

how do i concatenate

Avatar

Level 1

how can i do concatenate 3 text fields into one string field  using java script or formcalc ?

example:

NameTypeModel
HondaCivic2000
Honda.Civic.2000
0 Replies

Avatar

Level 7

Try setting the calculate event of your field to Name + Type + Model

Avatar

Level 10

Hi,

in FormCalc you can use the Concat() method.

As mentioned above you can use the calculate event to place the script.


$ = Concat(Name,rawValue, " ", Type.rawValue, " ", Model.rawValue)