Expand my Community achievements bar.

Populate text field with a sentence and text from another text field

Avatar

Level 1

Hello! Please, I need assistance with the following:

When Name001 text field is populated, I need Sent001 field to populate with Name001 text field plus this sentence “will be attending”.

Sent001 field will look like this: Joanne Smith will be attending.

3 Replies

Avatar

Level 7

Override the calculate event of the Sent001 object with the following


Name0001.rawValue + " will be attending";


Avatar

Level 1

Thank you, but for some reason it is not working for me.

Language: FormCalc and using calculate this is what I am entering:

xfa.form.form1.CertIntlTravel.Sent01.rawValue = Name0001.rawValue + " will be attending";  

Avatar

Level 8

If you want to use formcalc Concat(TextField1.rawValue," will be attending")