I have a multi-page form that sometimes has an employee's name broken out as First and Last, and in other places, my employer wants them set as combined. Since the same name appears repeatedly on different pages, I have the Binding set to global so all they have to do is type the name in the first time and it auto-populates throughout the rest of the form.
I found one way to concatenate two text fields (TextField1.rawValue + " " + TextField2.rawValue;), but I've found it doesn't work if the fields I am trying to combine have binding set to Global and I have multiple instances of the field throughout several pages of the form (NameFirst[0].rawValue + .......). I've tried formatted.Value, too.
I'm really stuck here - I've searched every variation of the question that I can think of for several days, but can't find out how to do this -
Concatenate text fields that have Binding properties set to Global, with multiple instances of those fields in a form.
Anyone have a solution??
Thanks
George Kaiser