Valued Displayed in Form

S

Sharon

I have a table that has the first name, last name
separately. But, in the form, I would like it to display
as last name, first name in the same field.

How can I accomplish that?
 
J

Jack

Create an unbound field and set the CONTROL SOURCE to an
expression that includes the FirstName and LastName
fields as follows:
=Me![LastName] & ", " & Me![FirstName]
 
Top