If I have a form whose record source is a table containing first and last names, can I create a text box on the form that contains both names?
For example:
Table = tblCusts; contains "LName" & "FName"
Form = frmCust; record source = tblCusts
frmCust contains a text box called txtName
Can I populate txtName with data from LName & FName by identifying its record source something like this:
="Last_name" & ", " & "First_name"
IOW, I'm trying to turn independent first and last name table fields into a single, full-name text box. I've done this sort of thing in queries, but can't seem to get it to work on a form.
TIA for any advice,
kerryl
For example:
Table = tblCusts; contains "LName" & "FName"
Form = frmCust; record source = tblCusts
frmCust contains a text box called txtName
Can I populate txtName with data from LName & FName by identifying its record source something like this:
="Last_name" & ", " & "First_name"
IOW, I'm trying to turn independent first and last name table fields into a single, full-name text box. I've done this sort of thing in queries, but can't seem to get it to work on a form.
TIA for any advice,
kerryl