There is a text field that gets the firstname, lastname and title appended each time the user completes a new client form.
e.g.
Form_frmClient.companyname.Value = LTrim(IIf([LastName] = "", [firstname] & " " & [Title], [LastName] & " " & [firstname] & " " & [Title]))
This all gets saved on...