Combine First, Middle, and Last Names
Typically, when your templates require names of individuals, using separate variables for first, middle, and last names gives you the most flexibility. For example, you can more easily sort a list of names alphabetically by last name than you can if the entire name is in a single variable.
With separate variables for first, middle, and last names, you can use a Computation variable wherever you need the full name in your template. The following computations simply combine the three parts of the name, adding a space between each name and taking into consideration the fact that the middle name may not be answered.
HotDocs 2006 and later users
This computation also starts with the first name. If the middle name is answered, it will be merged, followed by a space character. If not, the SPACE instruction merges nothing.
First Name + " " + SPACE( Middle Name ) + Last Name
| A Text variable for an individual's first name. |
| A Text variable for an individual's middle name. |
| A Text variable for an individual's last name. |
First Name