Open kennlebu opened 6 years ago
Is there a way to concatenate two fields so that they appear as one string in textField? For example if my data has firstname and lastname, I want the textField value to appear as the whole name. Something like textField="firstname + ' ' + lastname"
textField
firstname
lastname
textField="firstname + ' ' + lastname"
Is there a way to concatenate two fields so that they appear as one string in
textField
? For example if my data hasfirstname
andlastname
, I want the textField value to appear as the whole name. Something liketextField="firstname + ' ' + lastname"