Copy link to clipboard
Copied
I have created a form with 'Physician First Name' and 'Physician Last Name'; how can I get a new field 'Physician Name' to generate automatically combining the first and last name fields once information has been entered into each field?
Copy link to clipboard
Copied
Use this code as its custom calculation script:
event.value = this.getField("'Physician First Name").valueAsString + " " + this.getField("'Physician Last Name").valueAsString;
Copy link to clipboard
Copied
Thank you!!!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now