Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session
SOLVED

2 Fields populated, concatenate to 3rd field

Avatar

Level 2

I have (2) textfields that I need to take the data entered from each and populate a 3rd field using the data entered in field 1 (plus 3 spaces) and then the data that was entered in field 2.  All of this will populate in field 3.

Is this possible?

Thanks,

1 Accepted Solution

Avatar

Correct answer by
Level 7

tf3.rawValue = tf1.rawValue + "   " + tf2.rawValue;

View solution in original post

1 Reply

Avatar

Correct answer by
Level 7

tf3.rawValue = tf1.rawValue + "   " + tf2.rawValue;