Answered
Hi, I need to combine 3 or more text fields into 1.
For example I have text Fields named like this on a page:
TextField1 - First Name
TextField2 - Last Name
TextField3 - Age
TextField4 - Address
TextField5 Should outpud data like this:
First Name_Last Name_Age_Address
I would like to add "Copy" button that would palce data in TextField5 into clipboard so I can pate it later.
Thanks.
Back to you concatenation problem. If you just want to put the fields together you can use the FormCalc "Concat()" function. But if you need to insert a separator character between joined fields or adjust the result for missing or null data, you would need to create a script to make the necessary adjustments.
George Kaiser